Skip to content

Commit

Permalink
Format .tf files correctly.
Browse files Browse the repository at this point in the history
  • Loading branch information
achton committed Dec 14, 2023
1 parent 36bc296 commit 197073f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions infrastructure/terraform/modules/dpl-platform-environment/aks.tf
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit 197073f

Please sign in to comment.