From d5120a696930896e7760cfbc584c74541c02311f Mon Sep 17 00:00:00 2001 From: David Zych Date: Mon, 14 Jun 2021 18:54:55 -0500 Subject: [PATCH] bump ref to v0.11 --- global/main.tf | 4 ++-- modules/campus-facing-subnet/module.tf | 2 +- modules/private-facing-subnet/module.tf | 2 +- modules/public-facing-subnet/module.tf | 2 +- modules/rdns-forwarder/module.tf | 2 +- vpc/main.tf | 12 ++++++------ vpc/rdns.tf | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/global/main.tf b/global/main.tf index 7142bdc..933d1f2 100644 --- a/global/main.tf +++ b/global/main.tf @@ -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 @@ -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 diff --git a/modules/campus-facing-subnet/module.tf b/modules/campus-facing-subnet/module.tf index b74894f..d4a25d5 100644 --- a/modules/campus-facing-subnet/module.tf +++ b/modules/campus-facing-subnet/module.tf @@ -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 diff --git a/modules/private-facing-subnet/module.tf b/modules/private-facing-subnet/module.tf index aca3f4c..cfccbfc 100644 --- a/modules/private-facing-subnet/module.tf +++ b/modules/private-facing-subnet/module.tf @@ -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 diff --git a/modules/public-facing-subnet/module.tf b/modules/public-facing-subnet/module.tf index 90d05e4..6ad66ec 100644 --- a/modules/public-facing-subnet/module.tf +++ b/modules/public-facing-subnet/module.tf @@ -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 diff --git a/modules/rdns-forwarder/module.tf b/modules/rdns-forwarder/module.tf index ae18094..ea2e9f4 100644 --- a/modules/rdns-forwarder/module.tf +++ b/modules/rdns-forwarder/module.tf @@ -151,7 +151,7 @@ variable "ansible_pull_url" { } variable "ansible_pull_checkout" { - default = "v0.10" + default = "v0.11" } ## Outputs diff --git a/vpc/main.tf b/vpc/main.tf index e52e09f..6dca620 100644 --- a/vpc/main.tf +++ b/vpc/main.tf @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 diff --git a/vpc/rdns.tf b/vpc/rdns.tf index 5c462ce..e7037f0 100644 --- a/vpc/rdns.tf +++ b/vpc/rdns.tf @@ -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" @@ -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"