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

1234567891011121314151617181920212223242526272829303132333435
  1. variable "contract_id" {
  2. type = string
  3. }
  4. variable "group_id" {
  5. type = string
  6. }
  7. variable "user_id" {
  8. type = string
  9. }
  10. variable "security_policy_prefix" {
  11. type = number
  12. }
  13. variable "security_policy_name" {
  14. type = string
  15. }
  16. variable "email" {
  17. type = string
  18. }
  19. variable "network" {
  20. type = string
  21. }
  22. variable "host_names" {
  23. type = list(string)
  24. }
  25. variable "geo_block_network_list_id" {
  26. type = string
  27. }