Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions apps/marketing/cicd/1-setup/setup.rb
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,11 @@ def deploy_account_resources(options)
parameters: parameters,
region: 'us-east-1',
cloudformation_role_arn: options[:cloudformation_role_arn],
tags: {
"owner" => "site@code.org",
"application" => "marketing-sites",
"environment-type" => "shared"
},
capabilities: ["CAPABILITY_IAM", "CAPABILITY_NAMED_IAM", "CAPABILITY_AUTO_EXPAND"],
template_s3_bucket: options[:template_s3_bucket],
clients: clients
Expand Down Expand Up @@ -405,6 +410,11 @@ def deploy_region_resources(options)
parameters: parameters,
region: options[:region],
cloudformation_role_arn: options[:cloudformation_role_arn],
tags: {
"owner" => "site@code.org",
"application" => "marketing-sites",
"environment-type" => "shared"
},
template_s3_bucket: options[:template_s3_bucket],
clients: clients
)
Expand Down
6 changes: 6 additions & 0 deletions apps/marketing/cicd/3-app/deploy.rb
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,8 @@ def validate_production_domain_options(options)
region: 'us-east-1',
role_arn: options[:role_arn],
tags: {
'owner' => 'site@code.org',
'application' => 'marketing-sites',
'environment-type' => options[:environment_type],
'site-type' => options[:site_type]
}
Expand Down Expand Up @@ -430,6 +432,8 @@ def validate_production_domain_options(options)
region: options[:region],
role_arn: options[:role_arn],
tags: {
'owner' => 'site@code.org',
'application' => 'marketing-sites',
'environment-type' => options[:environment_type],
'site-type' => options[:site_type]
},
Expand Down Expand Up @@ -467,6 +471,8 @@ def validate_production_domain_options(options)
region: 'us-east-1',
role_arn: options[:role_arn],
tags: {
'owner' => 'site@code.org',
'application' => 'marketing-sites',
'environment-type' => options[:environment_type],
'site-type' => options[:site_type]
}
Expand Down
Loading