[WIP] nodepools feature

This commit is contained in:
jodhi
2022-02-23 22:46:46 +07:00
parent 054782d6be
commit 7d301f2c6d
5 changed files with 38 additions and 18 deletions

View File

@@ -4,7 +4,9 @@ output "controlplanes_public_ip" {
}
output "agents_public_ip" {
value = module.agents.*.ipv4_address
value = [
for obj in module.agents : obj.ipv4_address
]
description = "The public IP addresses of the agent server."
}