1234567891011121314151617181920212223242526272829303132333435363738394041 |
- variable "edgerc" {
- type = string
- default = "~/.edgerc"
- }
- variable "section" {
- type = string
- }
- variable "prefix" {
- type = string
- }
- variable "contract_id" {
- type = string
- }
- variable "group_id" {
- type = string
- }
-
- variable "origin" {
- type = string
- }
- variable "cpcode" {
- type = number
- }
- variable "secure" {
- type = bool
- }
- variable "network" {
- default = "STAGING"
- }
-
- variable "hostname" {
- type = string
- }
-
- variable "edge_hostname" {
- type = string
- }
- variable "program" {
- type = string
- default = "terraform"
- }
|