We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am defining upgrade profile
resource "netskope_publisher_upgrade_profiles" "weekly" { name = "${var.identifier}-weekly-upgrade-profile" docker_tag = "latest" enabled = true frequency = "0 7 * * MON#1" # Monday 7AM every week release_type = "Latest" timezone = "Australia/Sydney" }
And terraform apply I get the error
terraform apply
Error: You cannot consume this service
If I run the request directly to the API it works
curl -X 'POST' \ 'https://<TENANT>.goskope.com/api/v2/infrastructure/publisherupgradeprofiles' \ -H 'accept: application/json' \ -H 'Content-Type: application/json' \ -d '{ "name": "testing", "frequency": "0 7 * * MON#1", "timezone": "Australia/Sydney", "docker_tag": "latest", "release_type": "Latest", "enabled": 1 }'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am defining upgrade profile
And
terraform apply
I get the errorIf I run the request directly to the API it works
The text was updated successfully, but these errors were encountered: