Len Jaffe
Len Jaffe
In this case, the value of var.kms_key is a string variable , with a default value - not a value derived from a not-yet-existent resource. ``` variable "kms_key" { type...
I already have. The root module either passes nothing, letting the submodule use its default, or the root module passes the KMS Key's ARN in the kms_key parameter.
I appreciate your patience and perseverance. It took several readings, but I finally understood what you were trying to tell me. I've rearranged my tests so that the KMS key...
Your reply make a lot of sense. Thank you. However, I had already found that when AWSOwnedKey is false, passing the KmsARN key - set to anything - caused a...
``` Indeed, when you are constructing something that's going to be sent essentially verbatim as JSON (or similar) then you may need to postprocess it to transform it from the...
These are aws_opensearchserverless_* policies. I have to write my own opensearchserverless module, because I haven't been able to find one by Hashicorp in the module registry. I am not asking...
Thank you very much Martin. I appreciate your time and effort.