diff --git a/infrastructure/terraform/modules/dpl-platform-environment/aks.tf b/infrastructure/terraform/modules/dpl-platform-environment/aks.tf index 13ea9185..75c3332b 100644 --- a/infrastructure/terraform/modules/dpl-platform-environment/aks.tf +++ b/infrastructure/terraform/modules/dpl-platform-environment/aks.tf @@ -1,10 +1,10 @@ # Setup a single cluster in a single availabillity zone. resource "azurerm_kubernetes_cluster" "cluster" { - name = "aks-${var.environment_name}-01" - location = var.location - resource_group_name = azurerm_resource_group.rg.name - dns_prefix = var.environment_name - kubernetes_version = var.control_plane_version + name = "aks-${var.environment_name}-01" + location = var.location + resource_group_name = azurerm_resource_group.rg.name + dns_prefix = var.environment_name + kubernetes_version = var.control_plane_version automatic_channel_upgrade = var.cluster_upgrade_channel # We use a single manually scaled node pool in a single availabillity zone. diff --git a/infrastructure/terraform/modules/dpl-platform-environment/db.tf b/infrastructure/terraform/modules/dpl-platform-environment/db.tf index 768c958f..2ad6f23e 100644 --- a/infrastructure/terraform/modules/dpl-platform-environment/db.tf +++ b/infrastructure/terraform/modules/dpl-platform-environment/db.tf @@ -44,7 +44,7 @@ resource "azurerm_mariadb_server" "sql" { public_network_access_enabled = true # Lagoon does not yet support TLS. - ssl_enforcement_enabled = false + ssl_enforcement_enabled = false ssl_minimal_tls_version_enforced = "TLSEnforcementDisabled" } diff --git a/infrastructure/terraform/modules/dpl-platform-environment/dnsimple.tf b/infrastructure/terraform/modules/dpl-platform-environment/dnsimple.tf index 134158f7..2a65942e 100644 --- a/infrastructure/terraform/modules/dpl-platform-environment/dnsimple.tf +++ b/infrastructure/terraform/modules/dpl-platform-environment/dnsimple.tf @@ -2,8 +2,8 @@ # This will be replaced or removed before the platform goes live. resource "dnsimple_zone_record" "aks_ingress" { zone_name = var.base_domain - name = "*.${var.environment_name}.dpl" - value = azurerm_public_ip.aks_ingress.ip_address - type = "A" - ttl = var.domain_ttl + name = "*.${var.environment_name}.dpl" + value = azurerm_public_ip.aks_ingress.ip_address + type = "A" + ttl = var.domain_ttl }