Open
Description
When setting import = true
on an openid client, values defined in the terraform config for other fields are not applied on create, and appear as changes in a subsequent apply.
For example:
# Assume this was applied and then removed from state
resource "keycloak_openid_client" "example" {
client_id = "example"
enabled = true
access_type = "CONFIDENTIAL"
}
###
# Then the following code was deployed
resource "keycloak_openid_client" "example" {
client_id = "example"
enabled = false
access_type = "PUBLIC"
import = true
}
On the first plan the resource shows that enabled will be false and on apply the client is imported into state. On a subsequent plan, however we see:
# keycloak_openid_client.example will be updated in-place
~ resource "keycloak_openid_client" "account_console" {
~ enabled = true -> false
...
}
This is an inconsistency between plan and apply, and since there is no error on the first apply, it may not be obvious that the client is still enabled, which could be a security concern in some use cases.
Metadata
Metadata
Assignees
Labels
No labels