Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
anniehedgpeth committed Sep 21, 2023
1 parent cd33d9f commit a22bd32
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
22 changes: 11 additions & 11 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ module "network" {
resource_group_name = module.resource_groups.resource_group_name
location = var.location

active_active = local.active_active
enable_ssh = var.enable_ssh
active_active = local.active_active
enable_ssh = var.enable_ssh
is_replicated_deployment = var.is_replicated_deployment

network_allow_range = var.network_allow_range
Expand Down Expand Up @@ -331,15 +331,15 @@ module "load_balancer" {
zones = var.zones

# General
active_active = local.active_active
domain_name = var.domain_name
is_replicated_deployment = var.is_replicated_deployment
tfe_subdomain = var.tfe_subdomain
resource_group_name_dns = module.resource_groups.resource_group_name_dns
dns_create_record = var.dns_create_record
tenant_id = data.azurerm_client_config.current.tenant_id
dns_external_fqdn = var.dns_external_fqdn
enable_ssh = var.enable_ssh
active_active = local.active_active
domain_name = var.domain_name
is_replicated_deployment = var.is_replicated_deployment
tfe_subdomain = var.tfe_subdomain
resource_group_name_dns = module.resource_groups.resource_group_name_dns
dns_create_record = var.dns_create_record
tenant_id = data.azurerm_client_config.current.tenant_id
dns_external_fqdn = var.dns_external_fqdn
enable_ssh = var.enable_ssh

# Secrets
ca_certificate_secret = var.ca_certificate_secret
Expand Down
2 changes: 1 addition & 1 deletion tests/private-active-active/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ module "private_active_active" {
tags = local.common_tags

# FDO Specific Values
is_replicated_deployment = var.is_replicated_deployment
is_replicated_deployment = var.is_replicated_deployment
hc_license = var.hc_license
license_reporting_opt_out = true
registry_password = var.registry_password
Expand Down
2 changes: 1 addition & 1 deletion tests/private-tcp-active-active/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ module "private_tcp_active_active" {
tags = local.common_tags

# FDO Specific Values
is_replicated_deployment = var.is_replicated_deployment
is_replicated_deployment = var.is_replicated_deployment
hc_license = var.hc_license
license_reporting_opt_out = true
registry_password = var.registry_password
Expand Down
2 changes: 1 addition & 1 deletion tests/public-active-active/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ module "public_active_active" {
tags = local.common_tags

# FDO Specific Values
is_replicated_deployment = var.is_replicated_deployment
is_replicated_deployment = var.is_replicated_deployment
hc_license = var.hc_license
license_reporting_opt_out = true
registry_password = var.registry_password
Expand Down
2 changes: 1 addition & 1 deletion tests/standalone-external/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ module "standalone_external" {
tags = local.common_tags

# FDO Specific Values
is_replicated_deployment = var.is_replicated_deployment
is_replicated_deployment = var.is_replicated_deployment
hc_license = var.hc_license
license_reporting_opt_out = true
registry_password = var.registry_password
Expand Down
2 changes: 1 addition & 1 deletion tests/standalone-mounted-disk/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ module "standalone_mounted_disk" {
tags = local.tags

# FDO Specific Values
is_replicated_deployment = var.is_replicated_deployment
is_replicated_deployment = var.is_replicated_deployment
hc_license = var.hc_license
license_reporting_opt_out = true
registry_password = var.registry_password
Expand Down

0 comments on commit a22bd32

Please sign in to comment.