variables.tf 509 B

1234567891011121314151617
  1. variable "prefix" {
  2. type = string
  3. description = "(Required) Prefix to be used in names of all resources"
  4. }
  5. variable "location" {
  6. type = string
  7. description = "(Required) Location of all resources and resource group"
  8. }
  9. variable "admin_username" {
  10. type = string
  11. description = "(Required) Username for the admin user for SSH access"
  12. }
  13. variable "admin_password" {
  14. type = string
  15. description = "(Required) Password for the admin user for SSH access"
  16. sensitive = true
  17. }