12 lines
207 B
Terraform
12 lines
207 B
Terraform
|
variable "connection_ip" {
|
||
|
type = string
|
||
|
description = "ipv4"
|
||
|
}
|
||
|
|
||
|
variable "connection_private_key" {
|
||
|
type = string
|
||
|
description = "private key used by terraform"
|
||
|
sensitive = true
|
||
|
}
|
||
|
|