skip to Main Content

Azure – AzAPI schema_validation_enabled bug

why isn't ignore_body_changes working for AzApi Terraform provider. (am I doing something wrong?) │ Error: embedded schema validation failed: the `body` is invalid: │ `properties.template.containers.0.resources.ephemeralStorage` is not expected here, it's read only │ `properties.template.containers.1.resources.ephemeralStorage` is not expected here, it's read…

VIEW QUESTION

Azure – Terraform conditional attribute setting

resource "azurerm_public_ip" "instance_public_ip" { count = var.assign_public_ip == "true" ? 1 : 0 name = "${var.name}-public-ip" location = var.location resource_group_name = var.resource_group_name allocation_method = "Dynamic" } resource "azurerm_network_interface" "main" { name = "${var.name}-nic" location = var.location resource_group_name = var.resource_group_name ip_configuration…

VIEW QUESTION
Back To Top
Search