hashicorp / terraform-provider-azurerm

Terraform provider for Azure Resource Manager
https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs
Mozilla Public License 2.0
4.62k stars 4.66k forks source link

SPELLING MISTAKE || azurerm_automation_software_update_configuration || V3.33.0 #20931

Open Kushagra-Neu opened 1 year ago

Kushagra-Neu commented 1 year ago

Is there an existing issue for this?

Community Note

Terraform Version

1.4.0

AzureRM Provider Version

3.33.0

Affected Resource(s)/Data Source(s)

azurerm_automation_software_update_configuration

Terraform Configuration Files

output "automation_software_update_configuration_output" {
  description = "Automation Software Update Configuration output values"
  value = { for k, v in azurerm_automation_software_update_configuration.automation_software_update_configuration : k => {
    id = v.id
    error_code =v.error_code
    error_meesage = v.error_meesage
    }
  }
}

Debug Output/Panic Output

#AUTOMATION SOFTWARE UPDATE CONFIGURATION OUTPUT
output "automation_software_update_configuration_output" {
  description = "Automation Software Update Configuration output values"
  value = { for k, v in azurerm_automation_software_update_configuration.automation_software_update_configuration : k => {
    id = v.id
    error_code =v.error_code
    error_message = v.error_message
    }
  }
}

Expected Behaviour

AUTOMATION SOFTWARE UPDATE CONFIGURATION OUTPUT

output "automation_software_update_configuration_output" { description = "Automation Software Update Configuration output values" value = { for k, v in azurerm_automation_software_update_configuration.automation_software_update_configuration : k => { id = v.id error_code =v.error_code error_message = v.error_message } } }

Actual Behaviour

No response

Steps to Reproduce

No response

Important Factoids

No response

References

No response

sinbai commented 1 year ago

@Kushagra-Neu thanks for opening this issue. It seems that this is a known issue. The typo property error_meesage would be removed in v4.0 and the doc would be updated. See here for details.