File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ locals {
3333 # value is a map with keys vars, environment_variables, and buildspec.
3434 # This map is assigned to the build_projects local value.
3535 _build_projects = var. docker_build ? concat ([
36- for project in var . build_projects : project if ! contains ([" test" , " build" ], project. name )
36+ for project in var . build_projects : project if ! contains ([" test" , " build" ], project. name )
3737 ],
3838 [
3939 {
Original file line number Diff line number Diff line change @@ -13,6 +13,13 @@ data "aws_s3_bucket" "assets" {
1313}
1414
1515data "aws_iam_policy_document" "codepipeline_assume_role" {
16+ # iam:GetInstanceProfile
17+ statement {
18+ effect = " Allow"
19+ actions = [
20+ " iam:GetInstanceProfile"
21+ ]
22+ }
1623 statement {
1724 effect = " Allow"
1825 actions = [
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ locals {
7575 nonsensitive_parameters = tomap (
7676 { for k , v in local . ssm_parameters :
7777 (issensitive (k) ? nonsensitive (k) : k) => (issensitive (v) ? nonsensitive (v) : v)
78- if ! contains (var. nonmanaged_parameters , issensitive (k) ? nonsensitive (k) : k)
78+ if ! contains (var. nonmanaged_parameters , issensitive (k) ? nonsensitive (k) : k)
7979 }
8080 )
8181}
You can’t perform that action at this time.
0 commit comments