We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Would like to be able to encrypt via KMS. Wondering if it is possible to add this ability.
https://www.terraform.io/docs/backends/types/s3.html#kms_key_id
The text was updated successfully, but these errors were encountered:
This can be done by overwriting the var terraform_backend_config_template_file with your own template file that includes the kms_key_id.
terraform_backend_config_template_file
kms_key_id
terraform { required_version = ">= ${terraform_version}" backend "s3" { region = "${region}" bucket = "${bucket}" key = "${terraform_state_file}" dynamodb_table = "${dynamodb_table}" profile = "${profile}" role_arn = "${role_arn}" encrypt = "${encrypt}" kms_key_id = "arn:aws:..." } }
Sorry, something went wrong.
Fixed by #178
No branches or pull requests
Would like to be able to encrypt via KMS. Wondering if it is possible to add this ability.
https://www.terraform.io/docs/backends/types/s3.html#kms_key_id
The text was updated successfully, but these errors were encountered: