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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. default = "juiceshopdevops.akaorigin.com"
  23. }
  24. variable "cp_code_id" {
  25. type = number
  26. default = 1523912
  27. }
  28. variable "secure" {
  29. type = bool
  30. default = true
  31. }
  32. variable "network" {
  33. default = "STAGING"
  34. }
  35. variable "hostname" {
  36. type = string
  37. default = "akaudevops.com"
  38. }
  39. variable "edge_hostname" {
  40. type = string
  41. default = "akaudevops.com.edgekey.net"
  42. }
  43. variable "labname" {
  44. type = string
  45. default = "cicdlab"
  46. }
  47. variable "email" {
  48. type = string
  49. }