選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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