-
Notifications
You must be signed in to change notification settings - Fork 301
New issue
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
Can't add app_role value as null #130
Comments
This comment has been minimized.
This comment has been minimized.
Looks like the error comes from the validation function NoEmptyStrings which is called in the definition of value I guess we either need to have a different validation which allows for null (or "") in app_role.value. |
In addition, since you have you can't set |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
@guri-s & @enorlando this seems like an easy enough fix to get in for |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. If you feel I made an error 🤖 🙉 , please reach out to my human friends 👉 [email protected]. Thanks! |
This has been released in version 0.7.0 of the provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. As an example: provider "azuread" {
version = "~> 0.7.0"
}
# ... other configuration ... |
Community Note
Terraform 0.11.14 and AzureAD Provider 0.5.0
Affected Resource(s)
azuread_application
Terraform Configuration Files
Debug Output
We should be able to set a null value for the
app_role
.If I look at the app manifest in Azure the value is 'null'. But it is not allowed to be set in tf.
Below is from azure manifest of the app
Expected Behavior
We should be able to set the app_role as null
Actual Behavior
Error: azuread_application.xxxxx: "app_role.0.value" must not be empty
Steps to Reproduce
terraform plan
The text was updated successfully, but these errors were encountered: