Skip to content

Commit

Permalink
terrafmt
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeKlebolt committed Oct 26, 2023
1 parent b8b0570 commit 1ababf6
Showing 1 changed file with 26 additions and 26 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -720,37 +720,37 @@ resource "azurerm_kubernetes_cluster" "test" {

func (KubernetesClusterResource) enableFips(data acceptance.TestData) string {
return fmt.Sprintf(`
provider "azurerm" {
features {}
}
provider "azurerm" {
features {}
}
resource "azurerm_resource_group" "test" {
name = "acctestRG-aks-%d"
location = "%s"
}
resource "azurerm_resource_group" "test" {
name = "acctestRG-aks-%d"
location = "%s"
}
resource "azurerm_kubernetes_cluster" "test" {
name = "acctestaks%d"
location = azurerm_resource_group.test.location
resource_group_name = azurerm_resource_group.test.name
dns_prefix = "acctestaks%d"
default_node_pool {
fips_enabled = true
name = "default"
node_count = 1
vm_size = "Standard_DS2_v2"
}
resource "azurerm_kubernetes_cluster" "test" {
name = "acctestaks%d"
location = azurerm_resource_group.test.location
resource_group_name = azurerm_resource_group.test.name
dns_prefix = "acctestaks%d"
identity {
type = "SystemAssigned"
}
default_node_pool {
fips_enabled = true
name = "default"
node_count = 1
vm_size = "Standard_DS2_v2"
}
network_profile {
network_plugin = "kubenet"
load_balancer_sku = "standard"
}
identity {
type = "SystemAssigned"
}
network_profile {
network_plugin = "kubenet"
load_balancer_sku = "standard"
}
}
`, data.RandomInteger, data.Locations.Primary, data.RandomInteger, data.RandomInteger)
}

Expand Down

0 comments on commit 1ababf6

Please sign in to comment.