Configures storage buckets to be optionally exposed via service endpoints

This commit is contained in:
Rob Gil
2020-01-22 19:35:54 -05:00
parent 9042a960bb
commit 01703b1488
5 changed files with 40 additions and 10 deletions

View File

@@ -5,6 +5,8 @@ module "task_order_bucket" {
name = var.name
environment = var.environment
region = var.region
policy = "Deny"
subnet_ids = [module.vpc.subnets]
}
module "tf_state" {
@@ -14,4 +16,6 @@ module "tf_state" {
name = var.name
environment = var.environment
region = var.region
policy = "Allow"
subnet_ids = []
}