Hi there,
Just started to play with a therefrom, so far, so go.
It really makes easier to deploy servers comparing to the bash scripting.
I still have not managed to achieve a few things there.
I have variables set :
variable "static_ip" {
default = {
"1" = "10.10.1.1"
"2" = "10.10.2.1"
"3" = "10.10.3.1"
}
}
Using them for servers with count works fine.
But I also need to concat them before the server bootstrap resource
and reuse it later there.
How to concat in the format like this:
etcd(1-3) count needs to be used
for IP using count retrieve it.
Any tips/solutions would be very helpful
Thanks a lot
Rimas