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

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. variable "edgerc" {
  2. type = string
  3. default = "~/.edgerc"
  4. }
  5. variable "section" {
  6. type = string
  7. }
  8. variable "UserID" {
  9. type = string
  10. }
  11. variable "contract_id" {
  12. type = string
  13. default = "F-JOGRYJ"
  14. }
  15. variable "group_id" {
  16. type = string
  17. default = "246976"
  18. }
  19. variable "cp_code_id" {
  20. type = number
  21. default = 1564612
  22. }
  23. variable "secure" {
  24. type = bool
  25. default = false
  26. }
  27. variable "network" {
  28. default = "production"
  29. }
  30. variable "edge_hostname" {
  31. type = string
  32. default = "apisecuritylab.edgesuite.net"
  33. }
  34. variable "email" {
  35. type = string
  36. }
  37. variable "origin_hostname" {
  38. type = string
  39. default = "172.233.197.159"
  40. }