Skip to content

Commit c2c8d45

Browse files
committed
Fixed type to be list
1 parent 2d83ac6 commit c2c8d45

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

terraform/bootstrap/remote-state/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
provider "aws" {
22
region = "<% index .Params `region` %>"
3-
allowed_account_ids = "<% index .Params `accountId` %>"
3+
allowed_account_ids = [ "<% index .Params `accountId` %>" ]
44
}
55

66
resource "aws_s3_bucket" "terraform_remote_state" {

terraform/bootstrap/secrets/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
provider "aws" {
22
region = "<% index .Params `region` %>"
3-
allowed_account_ids = "<% index .Params `accountId` %>"
3+
allowed_account_ids = [ "<% index .Params `accountId` %>" ]
44
}
55

66

0 commit comments

Comments
 (0)