Skip to content

Commit

Permalink
bump for typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dfry committed Aug 29, 2021
1 parent 0062fc2 commit 9248751
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ locals {
}

module "ubuntu-bionic-ami" {
source = "git::https://github.com/mojaloop/iac-shared-modules.git//aws/ami-ubuntu?ref=v1.0.8"
source = "git::https://github.com/mojaloop/iac-shared-modules.git//aws/ami-ubuntu?ref=v1.0.9"
release = "18.04"
}

module "ubuntu-focal-ami" {
source = "git::https://github.com/mojaloop/iac-shared-modules.git//aws/ami-ubuntu?ref=v1.0.8"
source = "git::https://github.com/mojaloop/iac-shared-modules.git//aws/ami-ubuntu?ref=v1.0.9"
release = "20.04"
}

Expand All @@ -26,7 +26,7 @@ data "aws_availability_zones" "available" {
}

module "public_subnets" {
source = "git::https://github.com/mojaloop/iac-shared-modules.git//aws/named-subnets?ref=v1.0.8"
source = "git::https://github.com/mojaloop/iac-shared-modules.git//aws/named-subnets?ref=v1.0.9"
namespace = var.tenant
name = var.tenant
subnet_names = local.all_pub_subnets
Expand All @@ -40,7 +40,7 @@ module "public_subnets" {
}

module "private_subnets" {
source = "git::https://github.com/mojaloop/iac-shared-modules.git//aws/named-subnets?ref=v1.0.8"
source = "git::https://github.com/mojaloop/iac-shared-modules.git//aws/named-subnets?ref=v1.0.9"
namespace = var.tenant
name = var.tenant
subnet_names = local.all_priv_subnets
Expand All @@ -54,7 +54,7 @@ module "private_subnets" {
}

module "gitlab" {
source = "git::https://github.com/mojaloop/iac-shared-modules.git//aws/gitlab?ref=v1.0.8"
source = "git::https://github.com/mojaloop/iac-shared-modules.git//aws/gitlab?ref=v1.0.9"
ami = var.use_latest_ami ? module.ubuntu-focal-ami.id : var.gitlab_ami_list[var.region]
instance_type = "t2.large"
gitlab_runner_size = "c5.2xlarge"
Expand All @@ -70,7 +70,7 @@ module "gitlab" {
}

module "nexus" {
source = "git::https://github.com/mojaloop/iac-shared-modules.git//aws/nexus?ref=v1.0.8"
source = "git::https://github.com/mojaloop/iac-shared-modules.git//aws/nexus?ref=v1.0.9"
ami = var.use_latest_ami ? module.ubuntu-focal-ami.id : var.nexus_ami_list[var.region]
instance_type = var.nexus_instance_type
domain = var.domain
Expand Down
4 changes: 2 additions & 2 deletions wireguard.tf
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ resource "random_password" "wireguard_password" {
}

module "wireguard" {
source = "git::https://github.com/mojaloop/iac-shared-modules.git//aws/wg?ref=v1.0.8"
source = "git::https://github.com/mojaloop/iac-shared-modules.git//aws/wg?ref=v1.0.9"

ami_id = var.use_latest_ami ? module.ubuntu-focal-ami.id : var.vpn_ami_list[var.region]
instance_type = var.vpn_instance_type
Expand All @@ -73,7 +73,7 @@ module "wireguard" {
}

/* module "wireguard_users" {
source = "git::https://github.com/mojaloop/iac-shared-modules.git//aws/wg_user?ref=v1.0.8"
source = "git::https://github.com/mojaloop/iac-shared-modules.git//aws/wg_user?ref=v1.0.9"
dns_server = "10.25.0.2"
wireguard_address = module.wireguard.public_ip
Expand Down

0 comments on commit 9248751

Please sign in to comment.