Skip to content

Commit

Permalink
--amend
Browse files Browse the repository at this point in the history
  • Loading branch information
stwalkerster committed Dec 2, 2024
1 parent a97cd31 commit 949e40f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions app.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ locals {
}

module "bluegreen" {
source = "app.terraform.io/enwikipedia-acc/bluegreen/openstack"
version = "0.2.0"
source = "github.com/enwikipedia-acc/terraform-openstack-bluegreen?ref=0.2.0"

blue_dns_name = "${local.blue_resource_prefix}.${data.openstack_dns_zone_v2.rootzone.name}"
green_dns_name = "${local.green_resource_prefix}.${data.openstack_dns_zone_v2.rootzone.name}"
Expand All @@ -15,7 +14,7 @@ module "bluegreen" {

module "application-blue" {
source = "github.com/enwikipedia-acc/terraform-openstack-waca-application"
# version = "0.0.0"

count = module.bluegreen.blue_count

dns_name = module.bluegreen.blue_dns_name
Expand All @@ -34,7 +33,7 @@ module "application-blue" {

module "application-green" {
source = "github.com/enwikipedia-acc/terraform-openstack-waca-application"
# version = "0.0.0"

count = module.bluegreen.green_count

dns_name = module.bluegreen.green_dns_name
Expand Down

0 comments on commit 949e40f

Please sign in to comment.