You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

vars.tf 594B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. variable "edgerc" {
  2. type = string
  3. default = "~/.edgerc"
  4. }
  5. variable "section" {
  6. type = string
  7. }
  8. variable "prefix" {
  9. type = string
  10. }
  11. variable "contract_id" {
  12. type = string
  13. }
  14. variable "group_id" {
  15. type = string
  16. }
  17. variable "origin" {
  18. type = string
  19. }
  20. variable "cpcodeId" {
  21. type = number
  22. }
  23. variable "cpcodeName" {
  24. type = string
  25. }
  26. variable "secure" {
  27. type = bool
  28. }
  29. variable "network" {
  30. default = "STAGING"
  31. }
  32. variable "hostname" {
  33. type = string
  34. }
  35. variable "edge_hostname" {
  36. type = string
  37. }
  38. variable "program" {
  39. type = string
  40. }
  41. variable "email" {
  42. type = string
  43. }