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.

variables.tf 751B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. variable "edgerc" {
  2. type = string
  3. default = "~/.edgerc"
  4. }
  5. variable "section" {
  6. type = string
  7. default = "default"
  8. }
  9. variable "UserID" {
  10. type = string
  11. }
  12. variable "contract_id" {
  13. type = string
  14. default = "W-KXID8R"
  15. }
  16. variable "group_id" {
  17. type = string
  18. default = "240886"
  19. }
  20. variable "origin_hostname" {
  21. type = string
  22. }
  23. variable "cp_code_id" {
  24. type = number
  25. default = 1523912
  26. }
  27. variable "secure" {
  28. type = bool
  29. default = true
  30. }
  31. variable "network" {
  32. default = "STAGING"
  33. }
  34. variable "hostname" {
  35. type = string
  36. default = "akaudevops.com"
  37. }
  38. variable "edge_hostname" {
  39. type = string
  40. default = "akaudevops.com.edgekey.net"
  41. }
  42. variable "labname" {
  43. type = string
  44. default = "tflab"
  45. }
  46. variable "email" {
  47. type = string
  48. }