variables.tf 317 B

123456789101112131415161718
  1. variable "admin_keys" {
  2. description = "Name and public key for all admins"
  3. type = list(object({
  4. name = string
  5. key = string
  6. }))
  7. default = []
  8. }
  9. variable "user_keys" {
  10. description = "Name and public key for all users"
  11. type = list(object({
  12. name = string
  13. key = string
  14. }))
  15. default = []
  16. }