123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- 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 "cpcodeId" {
- type = number
- }
-
- variable "cpcodeName" {
- type = string
- }
-
- variable "secure" {
- type = bool
- }
- variable "network" {
- default = "STAGING"
- }
-
- variable "hostname" {
- type = string
- }
-
- variable "edge_hostname" {
- type = string
- }
- variable "program" {
- type = string
- }
- variable "email" {
- type = string
- }
|