You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error: expected runbook_type to be one of ["Graph" "GraphPowerShell" "GraphPowerShellWorkflow" "PowerShell" "Python2" "Python3" "PowerShellWorkflow" "Script"], got PowerShell72
The text was updated successfully, but these errors were encountered:
Hey @msetogecko, what version of the azurerm provider are you using? aztfexport defaults to exporting the latest version of azurerm which supports the PowerShell72 option, but if you're running on an older version of azurerm the PowerShell72 value is invalid for runbook_type.
@msetogecko Before we create a new release to pin a newer provider version, you can use --provider-version option to select the provider version explicitly, e.g. use --provider-version v3.92.0 to pick the latest version (at this moment).
resource "azurerm_automation_runbook" "res-10164" { automation_account_name = "my_aa_account_name" content = "my_runbook_content" description = "my_runbook_description." location = "eastus2" log_activity_trace_level = 9 log_progress = false log_verbose = false name = "my_runbook_name" resource_group_name = "my_aa_rg_name" runbook_type = "PowerShell72" depends_on = [ azurerm_automation_account.res-13, ] }
Error:
Error: expected runbook_type to be one of ["Graph" "GraphPowerShell" "GraphPowerShellWorkflow" "PowerShell" "Python2" "Python3" "PowerShellWorkflow" "Script"], got PowerShell72
The text was updated successfully, but these errors were encountered: