Skip to content

Commit

Permalink
Add timeout for aws_s3_bucket_public_access_block
Browse files Browse the repository at this point in the history
  • Loading branch information
lgallard committed Aug 24, 2021
1 parent 721bb69 commit e2144f4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions main.tf
Expand Up @@ -52,6 +52,11 @@ resource "aws_s3_bucket_public_access_block" "default" {
block_public_policy = var.block_public_policy
restrict_public_buckets = var.restrict_public_buckets
depends_on = [aws_s3_bucket.default]

timeouts {
create = "1h"
delete = "2h"
}
}

resource "aws_dynamodb_table" "with_server_side_encryption" {
Expand Down

0 comments on commit e2144f4

Please sign in to comment.