Skip to content

Commit

Permalink
session passing test
Browse files Browse the repository at this point in the history
  • Loading branch information
denis256 committed Nov 27, 2023
1 parent 4aef21d commit 4e20901
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
3 changes: 3 additions & 0 deletions issue-2803/main.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
terraform {
backend "s3" {}
}
24 changes: 24 additions & 0 deletions issue-2803/terragrunt.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
remote_state {
backend = "s3"
config = {
bucket = "test-tg-123"
key = "terraform.tfstate"
region = "us-west-2"
assume_role = {
role_arn = "arn:aws:iam::123:role/s3-role-1"
external_id = "123"
session_name = "qwe"
}
encrypt = true
dynamodb_table = "admin-terraform-lock"
disable_bucket_update = true
s3_bucket_tags = {
owner = "terragrunt"
name = "Terraform state storage"
}
dynamodb_table_tags = {
owner = "terragrunt"
name = "Terraform lock table"
}
}
}

0 comments on commit 4e20901

Please sign in to comment.