17 lines
178 B
HCL
17 lines
178 B
HCL
variable "domain" {
|
|
type = string
|
|
}
|
|
|
|
|
|
variable "ssh_public_key" {
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "ssh_private_key" {
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
|