github.com/swisspost/terratest@v0.0.0-20230214120104-7ec6de2e1ae0/examples/azure/terraform-azure-cosmosdb-example/variables.tf (about) 1 # --------------------------------------------------------------------------------------------------------------------- 2 # REQUIRED PARAMETERS 3 # You must provide a value for each of these parameters. 4 # --------------------------------------------------------------------------------------------------------------------- 5 6 # --------------------------------------------------------------------------------------------------------------------- 7 # OPTIONAL PARAMETERS 8 # These parameters have reasonable defaults. 9 # --------------------------------------------------------------------------------------------------------------------- 10 11 variable "postfix" { 12 description = "A postfix string to centrally mitigate resource name collisions" 13 type = string 14 default = "resource" 15 } 16 17 variable "location" { 18 description = "The location to set for the CosmosDB instance." 19 default = "East US" 20 } 21 22 variable "throughput" { 23 description = "The RU/s throughput for the database account." 24 default = 400 25 }