Skip to content

Commit

Permalink
Bump terraform-dxw-dalmatian-infrastructure module to v0.6.0
Browse files Browse the repository at this point in the history
* https://github.com/dxw/terraform-dxw-dalmatian-infrastructure/releases/tag/v0.6.0
* Adds the tfvar defaults for infrastructure deployments
  • Loading branch information
Stretch96 committed Nov 24, 2023
1 parent 7493baf commit e421856
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 16 deletions.
2 changes: 1 addition & 1 deletion bin/dalmatian
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ then
export GIT_DALMATIAN_INFRASTRUCTURE_REPO="terraform-dxw-dalmatian-infrastructure"

export TERRAFORM_PROJECT_ACCOUNT_BOOTSTRAP_VERSION="v0.5.0"
export TERRAFORM_PROJECT_INFRASTRUCTURE_VERSION="v0.5.0"
export TERRAFORM_PROJECT_INFRASTRUCTURE_VERSION="v0.6.0"

export AWS_CONFIG_FILE="$CONFIG_AWS_SSO_FILE"
export AWS_PROFILE="dalmatian-main"
Expand Down
38 changes: 23 additions & 15 deletions data/tfvars-templates/infrastructure.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,26 @@ infrastructure_kms_encryption = false
infrastructure_logging_bucket_retention = 30

# Infrastructure VPC
infrastructure_vpc = false
infrastructure_vpc_cidr_block = "10.0.0.0/16"
infrastructure_vpc_enable_dns_support = false
infrastructure_vpc_enable_dns_hostnames = false
infrastructure_vpc_instance_tenancy = "default"
infrastructure_vpc_enable_network_address_usage_metrics = false
infrastructure_vpc_assign_generated_ipv6_cidr_block = false
infrastructure_vpc_network_enable_public = false
infrastructure_vpc_network_enable_private = false
infrastructure_vpc_network_availability_zones = ["a", "b", "c"]
infrastructure_vpc_flow_logs_cloudwatch_logs = false
infrastructure_vpc_flow_logs_retention = 30
infrastructure_vpc_flow_logs_s3_with_athena = false
infrastructure_vpc_flow_logs_s3_key_prefix = "infrastructure-vpc-flow-logs"
infrastructure_vpc_flow_logs_traffic_type = "ALL"
infrastructure_vpc = false
infrastructure_vpc_cidr_block = "10.0.0.0/16"
infrastructure_vpc_enable_dns_support = false
infrastructure_vpc_enable_dns_hostnames = false
infrastructure_vpc_instance_tenancy = "default"
infrastructure_vpc_enable_network_address_usage_metrics = false
infrastructure_vpc_assign_generated_ipv6_cidr_block = false
infrastructure_vpc_network_enable_public = false
infrastructure_vpc_network_enable_private = false
infrastructure_vpc_network_availability_zones = ["a", "b", "c"]
infrastructure_vpc_flow_logs_cloudwatch_logs = false
infrastructure_vpc_flow_logs_retention = 30
infrastructure_vpc_flow_logs_s3_with_athena = false
infrastructure_vpc_flow_logs_s3_key_prefix = "infrastructure-vpc-flow-logs"
infrastructure_vpc_flow_logs_traffic_type = "ALL"
infrastructure_vpc_network_acl_egress_lockdown_public = false
infrastructure_vpc_network_acl_egress_lockdown_private = false
infrastructure_vpc_network_acl_ingress_lockdown_public = false
infrastructure_vpc_network_acl_ingress_lockdown_private = false
infrastructure_vpc_network_acl_egress_custom_rules_public = []
infrastructure_vpc_network_acl_egress_custom_rules_private = []
infrastructure_vpc_network_acl_ingress_custom_rules_public = []
infrastructure_vpc_network_acl_ingress_custom_rules_private = []

0 comments on commit e421856

Please sign in to comment.