We are facing some strange issue while using HSDP provider for connectMDM OauthClient resource case
- Define required parameters for mdm OAuthclient
- redirection_uris = [""] as empty
- 'terraform apply' always destroying oauthclient resource with same name and recreating without any change in parameter in every run.
- Suppose if we provide some string or space like
redirection_uris = [" "] or redirection_uris = ["http"] this problem not seen.
in Every run
~ redirection_uris = [ # forces replacement
+ null,
]
Issues: Without change in parameter 'terraform apply' destroying and creating resource in every run.
We are facing some strange issue while using HSDP provider for connectMDM OauthClient resource case
redirection_uris = [" "] or redirection_uris = ["http"] this problem not seen.
in Every run
~ redirection_uris = [ # forces replacement
+ null,
]
Issues: Without change in parameter 'terraform apply' destroying and creating resource in every run.