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 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. variable "contract_id" {
  2. type = string
  3. description = "Contract ID for property/config creation"
  4. }
  5. variable "group_id" {
  6. type = string
  7. description = "Group ID for property/config creation"
  8. }
  9. variable "product_id" {
  10. type = string
  11. description = "Property Manager product"
  12. }
  13. variable "user_id"{
  14. type = string
  15. description = "unique ID for each lab user"
  16. }
  17. variable "rule_format" {
  18. type = string
  19. description = "Property rule format"
  20. }
  21. variable "secure" {
  22. type = bool
  23. description = "Switch between enhanced and standard TLS"
  24. }
  25. variable "email" {
  26. type = string
  27. description = "Email address used for activations"
  28. }
  29. variable "cp_code_id" {
  30. type = number
  31. description = "CP Code for reporting"
  32. }
  33. variable "edge_hostname" {
  34. type = string
  35. description = "Edge hostname for property"
  36. }
  37. variable "network" {
  38. type = string
  39. description = "Akamai network for activation"
  40. }
  41. variable "cloudlet_policy_id" {
  42. type = number
  43. }
  44. variable "edgeworker_id" {
  45. type = string
  46. }