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
By default, the name of the DynamoDB Table is lock
Use Case
It will be good to have a customized name just in case I have a different environment and I want to name my table differently. (I know we can use a common table but good to have an option)
Describe Ideal Solution
A variable like dynamodb_table_name = "terraform-lock"
Alternatives Considered
After running terraform init, I went to file .terraform/modules/terraform_state_backend/main.tf and added name = "terraform" to this block
module "dynamodb_table_label" {
source = "cloudposse/label/null"
version = "0.22.0"
attributes = compact(concat(var.attributes, ["lock"]))
context = module.this.context
name = "terraform"
}
The text was updated successfully, but these errors were encountered:
Describe the Feature
By default, the name of the DynamoDB Table is
lock
Use Case
It will be good to have a customized name just in case I have a different environment and I want to name my table differently. (I know we can use a common table but good to have an option)
Describe Ideal Solution
A variable like
dynamodb_table_name = "terraform-lock"
Alternatives Considered
After running
terraform init
, I went to file.terraform/modules/terraform_state_backend/main.tf
and addedname = "terraform"
to this blockThe text was updated successfully, but these errors were encountered: