Added CAPABILITY_IAM to base stack creation
parent
75e8e5dc74
commit
3ab46082c0
|
|
@ -943,6 +943,7 @@ class AWSBuildEnvironment {
|
|||
yield CF.createStack({
|
||||
StackName: taskDefStackName,
|
||||
TemplateBody: taskDefCloudFormation,
|
||||
Capabilities: ['CAPABILITY_IAM'],
|
||||
Parameters: [
|
||||
{
|
||||
ParameterKey: 'ImageUrl',
|
||||
|
|
@ -1038,6 +1039,7 @@ class AWSBuildEnvironment {
|
|||
yield CF.createStack({
|
||||
StackName: baseStackName,
|
||||
TemplateBody: baseStack,
|
||||
Capabilities: ['CAPABILITY_IAM'],
|
||||
Parameters: [
|
||||
{ ParameterKey: 'EnvironmentName', ParameterValue: 'development' },
|
||||
{ ParameterKey: 'Storage', ParameterValue: `${baseStackName}-storage` },
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -144,6 +144,7 @@ class AWSBuildEnvironment implements RemoteBuilderProviderInterface {
|
|||
await CF.createStack({
|
||||
StackName: taskDefStackName,
|
||||
TemplateBody: taskDefCloudFormation,
|
||||
Capabilities: ['CAPABILITY_IAM'],
|
||||
Parameters: [
|
||||
{
|
||||
ParameterKey: 'ImageUrl',
|
||||
|
|
|
|||
Loading…
Reference in New Issue