1
0
forked from ovh/pci-test
pci-test/ex3/variables.tf
2024-12-03 15:50:29 +01:00

24 lines
480 B
HCL

variable "network_external_id" {
type = string
default = "bcf59eb2-9d83-41cc-b4f5-0435ed594833"
}
variable "network_lan" {
type = string
default = "lan_d2_demo"
}
variable "network_subnet_cidr" {
type = string
default = "10.10.0.0/24"
}
variable "ssh_pubkey" {
type = string
default = "~/.ssh/id_ed25519.pub"
}
variable "cloudinit_script" {
type = string
default = "#!/bin/bash\nsudo apt update && sudo apt install -y nginx"
}