github.com/darmach/terratest@v0.34.8-0.20210517103231-80931f95e3ff/examples/terraform-aws-dynamodb-example/variables.tf (about)

     1  # ---------------------------------------------------------------------------------------------------------------------
     2  # OPTIONAL PARAMETERS
     3  # These parameters have reasonable defaults.
     4  # ---------------------------------------------------------------------------------------------------------------------
     5  
     6  variable "table_name" {
     7    description = "The name to set for the dynamoDB table."
     8    type        = string
     9    default     = "terratest-example"
    10  }
    11