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 512B

12345678910111213141516171819202122232425262728293031323334353637383940
  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 "cpcode" {
  21. type = number
  22. }
  23. variable "secure" {
  24. type = bool
  25. }
  26. variable "network" {
  27. default = "STAGING"
  28. }
  29. variable "hostname" {
  30. type = string
  31. }
  32. variable "edge_hostname" {
  33. type = string
  34. }
  35. variable "program" {
  36. type = string
  37. }