terraform fmt
This commit is contained in:
parent
c20885dabc
commit
e9dfde8f88
@ -16,20 +16,20 @@ resource "azurerm_kubernetes_cluster" "aks_cluster" {
|
|||||||
name = random_string.aks_cluster_name.result
|
name = random_string.aks_cluster_name.result
|
||||||
location = azurerm_resource_group.rg.location
|
location = azurerm_resource_group.rg.location
|
||||||
resource_group_name = azurerm_resource_group.rg.name
|
resource_group_name = azurerm_resource_group.rg.name
|
||||||
dns_prefix = "myakscluster"
|
dns_prefix = "myakscluster"
|
||||||
|
|
||||||
default_node_pool {
|
default_node_pool {
|
||||||
type = "VirtualMachineScaleSets"
|
type = "VirtualMachineScaleSets"
|
||||||
name = "default"
|
name = "default"
|
||||||
node_count = 1
|
node_count = 1
|
||||||
max_count = 3
|
max_count = 3
|
||||||
min_count = 1
|
min_count = 1
|
||||||
vm_size = "Standard_DS2_v2"
|
vm_size = "Standard_DS2_v2"
|
||||||
enable_auto_scaling = true
|
enable_auto_scaling = true
|
||||||
}
|
}
|
||||||
|
|
||||||
network_profile {
|
network_profile {
|
||||||
network_plugin = "azure"
|
network_plugin = "azure"
|
||||||
load_balancer_sku = "standard"
|
load_balancer_sku = "standard"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user