Skip to content

Commit

Permalink
revert refs back to main
Browse files Browse the repository at this point in the history
  • Loading branch information
Annie Hedgpeth committed Oct 31, 2023
1 parent f391ccf commit f5a0b6c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ module "database" {
# Azure user data / cloud init used to install and configure TFE on instance(s) using Flexible Deployment Options
# ---------------------------------------------------------------------------------------------------------------
module "tfe_init_fdo" {
source = "git::https://github.com/hashicorp/terraform-random-tfe-utility//modules/tfe_init?ref=ah/tf-8609-fdo-6"
source = "git::https://github.com/hashicorp/terraform-random-tfe-utility//modules/tfe_init?ref=main"
count = var.is_replicated_deployment ? 0 : 1

cloud = "azurerm"
Expand Down Expand Up @@ -173,7 +173,7 @@ module "tfe_init_fdo" {
# Docker Compose File Config for TFE on instance(s) using Flexible Deployment Options
# ------------------------------------------------------------------------------------
module "docker_compose_config" {
source = "git::https://github.com/hashicorp/terraform-random-tfe-utility//modules/docker_compose_config?ref=ah/tf-8609-fdo-6"
source = "git::https://github.com/hashicorp/terraform-random-tfe-utility//modules/docker_compose_config?ref=main"
count = var.is_replicated_deployment ? 0 : 1

license_reporting_opt_out = var.license_reporting_opt_out
Expand Down Expand Up @@ -230,7 +230,7 @@ module "docker_compose_config" {
# TFE and Replicated settings to pass to the tfe_init_replicated module for Replicated deployment
# ------------------------------------------------------------------------------------------------
module "settings" {
source = "git::https://github.com/hashicorp/terraform-random-tfe-utility//modules/settings?ref=ah/tf-8609-fdo-6"
source = "git::https://github.com/hashicorp/terraform-random-tfe-utility//modules/settings?ref=main"
count = var.is_replicated_deployment ? 1 : 0

# TFE Base Configuration
Expand Down Expand Up @@ -283,7 +283,7 @@ module "settings" {
# Azure user data / cloud init used to install and configure TFE on instance(s)
# -----------------------------------------------------------------------------
module "tfe_init_replicated" {
source = "git::https://github.com/hashicorp/terraform-random-tfe-utility//modules/tfe_init_replicated?ref=ah/tf-8609-fdo-6"
source = "git::https://github.com/hashicorp/terraform-random-tfe-utility//modules/tfe_init_replicated?ref=main"
count = var.is_replicated_deployment ? 1 : 0

# TFE & Replicated Configuration data
Expand Down

0 comments on commit f5a0b6c

Please sign in to comment.