Skip to content

Commit

Permalink
v2.0.0 using acs v3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshutch committed Oct 6, 2020
1 parent c5b907b commit 73e6bad
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ provider "aws" {
}
module "bastion" {
source = "github.com/byu-oit/terraform-aws-bastion.git?ref=v1.2.1"
source = "github.com/byu-oit/terraform-aws-bastion.git?ref=v2.0.0"
env = "prd"
vpc_vpn_to_campus = true
netid = "mynetid"
Expand Down
4 changes: 2 additions & 2 deletions examples/double_hop/double_hop.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ locals {
}

module "public_bastion" {
source = "github.com/byu-oit/terraform-aws-bastion.git?ref=v1.2.1"
source = "github.com/byu-oit/terraform-aws-bastion.git?ref=v2.0.0"
env = local.env
vpc_vpn_to_campus = true
netid = "${local.netid}-public"
Expand All @@ -23,7 +23,7 @@ module "public_bastion" {


module "private_bastion" {
source = "[email protected]:byu-oit/terraform-aws-bastion.git?ref=v1.2.1"
source = "[email protected]:byu-oit/terraform-aws-bastion.git?ref=v2.0.0"
env = local.env
vpc_vpn_to_campus = true
netid = "${local.netid}-private"
Expand Down
2 changes: 1 addition & 1 deletion examples/module/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ provider "aws" {

module "bastion" {
#source = "../../"
source = "github.com/byu-oit/terraform-aws-bastion.git?ref=v1.2.1"
source = "github.com/byu-oit/terraform-aws-bastion.git?ref=v2.0.0"
env = "dev"
vpc_vpn_to_campus = false
netid = "jgubler"
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ terraform {
}

module "acs" {
source = "github.com/byu-oit/terraform-aws-acs-info.git?ref=v2.1.0"
source = "github.com/byu-oit/terraform-aws-acs-info.git?ref=v3.1.0"
vpc_vpn_to_campus = var.vpc_vpn_to_campus
}

Expand Down

0 comments on commit 73e6bad

Please sign in to comment.