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

123456789101112131415161718
  1. variable "user_id"{
  2. type = string
  3. description = "unique ID for each lab user"
  4. }
  5. variable "email" {
  6. type = string
  7. description = "Email address used for activations"
  8. }
  9. variable "geo_block_list" {
  10. type = list(any)
  11. description = "Blocked geos"
  12. }
  13. variable "network" {
  14. type = string
  15. }