Skip to content

Commit 1ae08ac

Browse files
authored
Merge pull request #4 from dodevops/feature/output-outbound-ips
feat: Adding output of public outbound IPs
2 parents 24d509a + 06ed2ca commit 1ae08ac

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -310,5 +310,9 @@ Description: n/a
310310

311311
### node\_resource\_group
312312

313+
Description: n/a
314+
315+
### public\_outbound\_ips
316+
313317
Description: n/a
314318
<!-- END_TF_DOCS -->

outputs.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,7 @@ output "client_token" {
4545
output "client_token_admin" {
4646
value = length(azurerm_kubernetes_cluster.k8s.kube_admin_config) > 0 ? azurerm_kubernetes_cluster.k8s.kube_admin_config[0].password : ""
4747
}
48+
49+
output "public_outbound_ips" {
50+
value = ["${azurerm_public_ip.public-ip-outbound.*.ip_address}"]
51+
}

0 commit comments

Comments
 (0)