-
Notifications
You must be signed in to change notification settings - Fork 17
Open
Labels
enhancementNew feature or requestNew feature or request
Description
@erdincka - does this look like it could work?
baremetal/myvars.tfvars
...
workers_private_ip = [ 1.2.3.4 ]
workers_private_dns = [ a.b.c ]
worker_count = [ 2 ]baremetal/variables.tf
variable workers_private_ip { default = [] }
variable workers_private_dns { default = [ ] }
variable worker_count { default = [] }
...
output "workers_private_ip" {
value = vars.workers_private_ip
}
output "workers_private_dns" {
value = vars.workers_private_dns
}
output "worker_count" {
value = vars.worker_count
}We should just need these files and a config.json file?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request