You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 16, 2020. It is now read-only.
the reserved range for the director network configuration is the only missing piece in output for configuring the tile, especially via templating a director.yml. cidrhost is very hand for that.
I can make a PR to add the following to the output:
output "subnet_mgmt_reserved" {
value = "${cidrhost(module.infra.ip_cidr_range, 1)}-${cidrhost(module.infra.ip_cidr_range, 9)}"
}
output "subnet_pas_reserved" {
value = "${cidrhost(module.pas.pas_subnet_ip_cidr_range, 1)}-${cidrhost(module.pas.pas_subnet_ip_cidr_range, 9)}"
}
output "subnet_pas_svc_reserved" {
value = "${cidrhost(module.pas.services_subnet_ip_cidr_range, 1)}-${cidrhost(module.pas.services_subnet_ip_cidr_range, 9)}"
}
The text was updated successfully, but these errors were encountered:
the reserved range for the director network configuration is the only missing piece in output for configuring the tile, especially via templating a director.yml.
cidrhost
is very hand for that.I can make a PR to add the following to the output:
The text was updated successfully, but these errors were encountered: