diff --git a/internal/services/automation/automation_software_update_configuration_resource.go b/internal/services/automation/automation_software_update_configuration_resource.go index 86e69afc46eb..caab8ecf7f98 100644 --- a/internal/services/automation/automation_software_update_configuration_resource.go +++ b/internal/services/automation/automation_software_update_configuration_resource.go @@ -117,7 +117,6 @@ type SoftwareUpdateConfigurationModel struct { AutomationAccountID string `tfschema:"automation_account_id"` Name string `tfschema:"name"` ErrorCode string `tfschema:"error_code"` - ErrorMeesage string `tfschema:"error_meesage,removedInNextMajorVersion"` ErrorMessage string `tfschema:"error_message"` OperatingSystem string `tfschema:"operating_system,removedInNextMajorVersion"` Linux []Linux `tfschema:"linux"` @@ -806,7 +805,7 @@ func (m SoftwareUpdateConfigurationResource) Read() sdk.ResourceFunc { } if errorMessage := props.Error; errorMessage != nil { - state.ErrorMeesage = pointer.From(errorMessage.Message) + state.ErrorMessage = pointer.From(errorMessage.Message) } }