12345678910111213141516171819202122232425262728293031323334353637383940 |
- 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
- }
|