16 lines
303 B
Terraform
16 lines
303 B
Terraform
|
variable "connection_ip" {
|
||
|
type = string
|
||
|
description = "ipv4"
|
||
|
}
|
||
|
|
||
|
variable "connection_private_key" {
|
||
|
type = string
|
||
|
description = "private key for terraform connection"
|
||
|
sensitive = true
|
||
|
}
|
||
|
|
||
|
variable "node_exporter_version" {
|
||
|
type = string
|
||
|
description = "like 1.5.2"
|
||
|
}
|