Skip to content

Commit

Permalink
bump ref to v0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
dmrzzz committed Jun 14, 2021
1 parent b8d426a commit d5120a6
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions global/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ resource "aws_ram_resource_share_accepter" "rs_accepter_us-east-2" {
# Note: this solution is deprecated in favor of Transit Gateway.

module "cgw_us-east-1" {
source = "git::https://github.com/techservicesillinois/aws-enterprise-vpc.git//modules/customer-gateways?ref=v0.10"
source = "git::https://github.com/techservicesillinois/aws-enterprise-vpc.git//modules/customer-gateways?ref=v0.11"

tags = var.tags

Expand All @@ -102,7 +102,7 @@ module "cgw_us-east-1" {
}

module "cgw_us-east-2" {
source = "git::https://github.com/techservicesillinois/aws-enterprise-vpc.git//modules/customer-gateways?ref=v0.10"
source = "git::https://github.com/techservicesillinois/aws-enterprise-vpc.git//modules/customer-gateways?ref=v0.11"

tags = var.tags

Expand Down
2 changes: 1 addition & 1 deletion modules/campus-facing-subnet/module.tf
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ output "cidr_block" {
## Resources

module "subnet" {
source = "git::https://github.com/techservicesillinois/aws-enterprise-vpc.git//modules/subnet-common?ref=v0.10"
source = "git::https://github.com/techservicesillinois/aws-enterprise-vpc.git//modules/subnet-common?ref=v0.11"

vpc_id = var.vpc_id
name = var.name
Expand Down
2 changes: 1 addition & 1 deletion modules/private-facing-subnet/module.tf
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ output "cidr_block" {
## Resources

module "subnet" {
source = "git::https://github.com/techservicesillinois/aws-enterprise-vpc.git//modules/subnet-common?ref=v0.10"
source = "git::https://github.com/techservicesillinois/aws-enterprise-vpc.git//modules/subnet-common?ref=v0.11"

vpc_id = var.vpc_id
name = var.name
Expand Down
2 changes: 1 addition & 1 deletion modules/public-facing-subnet/module.tf
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ output "cidr_block" {
## Resources

module "subnet" {
source = "git::https://github.com/techservicesillinois/aws-enterprise-vpc.git//modules/subnet-common?ref=v0.10"
source = "git::https://github.com/techservicesillinois/aws-enterprise-vpc.git//modules/subnet-common?ref=v0.11"

vpc_id = var.vpc_id
name = var.name
Expand Down
2 changes: 1 addition & 1 deletion modules/rdns-forwarder/module.tf
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ variable "ansible_pull_url" {
}

variable "ansible_pull_checkout" {
default = "v0.10"
default = "v0.11"
}

## Outputs
Expand Down
12 changes: 6 additions & 6 deletions vpc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ locals {
# deploying NAT gateways).

module "nat" {
source = "git::https://github.com/techservicesillinois/aws-enterprise-vpc.git//modules/nat-gateway?ref=v0.10"
source = "git::https://github.com/techservicesillinois/aws-enterprise-vpc.git//modules/nat-gateway?ref=v0.11"
for_each = { for az_suffix,subnet_key in var.nat_gateways : "${var.region}${az_suffix}" => {
az_suffix = az_suffix
subnet_key = subnet_key
Expand Down Expand Up @@ -301,7 +301,7 @@ resource "aws_vpn_gateway_attachment" "vgw_attachment" {
}

module "vpn1" {
source = "git::https://github.com/techservicesillinois/aws-enterprise-vpc.git//modules/vpn-connection?ref=v0.10"
source = "git::https://github.com/techservicesillinois/aws-enterprise-vpc.git//modules/vpn-connection?ref=v0.11"
count = var.use_dedicated_vpn ? 1 : 0

tags = var.tags
Expand Down Expand Up @@ -336,7 +336,7 @@ resource "null_resource" "vpn1" {
}

module "vpn2" {
source = "git::https://github.com/techservicesillinois/aws-enterprise-vpc.git//modules/vpn-connection?ref=v0.10"
source = "git::https://github.com/techservicesillinois/aws-enterprise-vpc.git//modules/vpn-connection?ref=v0.11"
count = var.use_dedicated_vpn ? 1 : 0

tags = var.tags
Expand Down Expand Up @@ -419,7 +419,7 @@ locals {
}

module "public-facing-subnet" {
source = "git::https://github.com/techservicesillinois/aws-enterprise-vpc.git//modules/public-facing-subnet?ref=v0.10"
source = "git::https://github.com/techservicesillinois/aws-enterprise-vpc.git//modules/public-facing-subnet?ref=v0.11"
for_each = { for k,v in local.subnet_details: k=>v if v.type == "public" }

tags = var.tags
Expand All @@ -438,7 +438,7 @@ module "public-facing-subnet" {
}

module "campus-facing-subnet" {
source = "git::https://github.com/techservicesillinois/aws-enterprise-vpc.git//modules/campus-facing-subnet?ref=v0.10"
source = "git::https://github.com/techservicesillinois/aws-enterprise-vpc.git//modules/campus-facing-subnet?ref=v0.11"
for_each = { for k,v in local.subnet_details: k=>v if v.type == "campus" }

tags = var.tags
Expand All @@ -459,7 +459,7 @@ module "campus-facing-subnet" {
}

module "private-facing-subnet" {
source = "git::https://github.com/techservicesillinois/aws-enterprise-vpc.git//modules/private-facing-subnet?ref=v0.10"
source = "git::https://github.com/techservicesillinois/aws-enterprise-vpc.git//modules/private-facing-subnet?ref=v0.11"
for_each = { for k,v in local.subnet_details: k=>v if v.type == "private" }

tags = var.tags
Expand Down
4 changes: 2 additions & 2 deletions vpc/rdns.tf
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ resource "aws_vpc_dhcp_options_association" "dhcp_assoc_option2" {

module "rdns-a" {
count = (var.rdns_option == 3 || var.rdns_transition) ? 1 : 0
source = "git::https://github.com/techservicesillinois/aws-enterprise-vpc.git//modules/rdns-forwarder?ref=v0.10"
source = "git::https://github.com/techservicesillinois/aws-enterprise-vpc.git//modules/rdns-forwarder?ref=v0.11"

tags = merge(var.tags, {
Name = "${var.vpc_short_name}-rdns-a"
Expand Down Expand Up @@ -132,7 +132,7 @@ resource "null_resource" "rdns-a" {

module "rdns-b" {
count = (var.rdns_option == 3 || var.rdns_transition) ? 1 : 0
source = "git::https://github.com/techservicesillinois/aws-enterprise-vpc.git//modules/rdns-forwarder?ref=v0.10"
source = "git::https://github.com/techservicesillinois/aws-enterprise-vpc.git//modules/rdns-forwarder?ref=v0.11"

tags = merge(var.tags, {
Name = "${var.vpc_short_name}-rdns-b"
Expand Down

0 comments on commit d5120a6

Please sign in to comment.