Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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. }