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
{{ message }}
This repository has been archived by the owner on Oct 27, 2024. It is now read-only.
In Terraform, checks support evaluation of arguments expressed in variables and remote modules to their actual values.
I try this code and it does not seem to work:
variable"value" {
type=booldefault=false
}
resource"aws_kms_key""objects" {
description="KMS key is used to encrypt bucket objects"deletion_window_in_days=7enable_key_rotation=var.value
}
It works well if I specify static value like true, false, "false" inside enable_key_rotation.
Is this a bug? Or is it not supported yet?
The text was updated successfully, but these errors were encountered:
Good job with this extension!
I try this code and it does not seem to work:
It works well if I specify static value like
true
,false
,"false"
insideenable_key_rotation
.Is this a bug? Or is it not supported yet?
The text was updated successfully, but these errors were encountered: