-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OPS-7301 Implement getting the full Kubernetes IP range from IONOS CI… (
#39)
- Loading branch information
1 parent
3c78123
commit bcc318e
Showing
3 changed files
with
14 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,19 @@ | ||
output "nicIndex" { | ||
value = local.nicIndex | ||
description = "Index of the NIC used by the provided LAN in the Kubernetes nodes." | ||
} | ||
|
||
output "prefix" { | ||
value = local.prefix | ||
description = "CIDR block used by the Kubernetes cluster, for example '10.0.0.0/24'." | ||
} | ||
|
||
output "node_lan_ips" { | ||
value = local.node_lan_ips | ||
} | ||
description = "List of the IPs assigned to the currently deployed Kubernetes nodes. When using this keep in mind that some of the IPs will change during maintenance." | ||
} | ||
|
||
output "nodes_full_ip_range" { | ||
value = local.nodes_full_ip_range | ||
description = "List of all the IPs in the range used by the Kubernetes cluster (IPs 10 to 255 in the prefix CIDR block)." | ||
} |