generated from equinix-labs/terraform-equinix-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
21 lines (19 loc) · 1015 Bytes
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# TEMPLATE: All variables must have a description and should declare their type.
# TEMPLATE: Set defaults whenever possible but do not set defaults for required properties.
# TEMPLATE: Declare all variables in this file, sprawling declarations are difficult to identify.
# TEMPLATE:
# TEMPLATE: https://www.terraform.io/docs/language/values/variables.html
# TEMPLATE: https://www.terraform.io/docs/language/expressions/types.html
# TEMPLATE:
# TEMPLATE: Replace sample variable described below with your own.
variable "metal_project_id" {
type = string
description = "The example project id value defines what will be included in the example resource in main.tf. This example is descriptive."
sensitive = false
}
# TEMPLATE: Replace sample variable described below with your own.
variable "metal_auth_token" {
type = string
description = "The example auth token value defines what will be included in the example resource in main.tf. This example is descriptive."
sensitive = true
}