Skip to content

Commit 8ae5e95

Browse files
committed
terraform 0.12 compliant output
1 parent 40dd5bd commit 8ae5e95

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

icp-deploy.tf

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -165,30 +165,30 @@ resource "null_resource" "start_install" {
165165
}
166166
}
167167

168-
output "ICP Console ELB DNS (internal)" {
168+
output "icp_concole_host" {
169169
value = "${aws_lb.icp-console.dns_name}"
170170
}
171171

172-
output "ICP Proxy ELB DNS (internal)" {
172+
output "icp_proxy_host" {
173173
value = "${aws_lb.icp-proxy.dns_name}"
174174
}
175175

176-
output "ICP Console URL" {
176+
output "icp_console_url" {
177177
value = "https://${var.user_provided_cert_dns != "" ? var.user_provided_cert_dns : aws_lb.icp-console.dns_name}:8443"
178178
}
179179

180-
output "ICP Registry ELB URL" {
180+
output "icp_registry_url" {
181181
value = "https://${aws_lb.icp-console.dns_name}:8500"
182182
}
183183

184-
output "ICP Kubernetes API URL" {
184+
output "icp_kubernetes_api_url" {
185185
value = "https://${aws_lb.icp-console.dns_name}:8001"
186186
}
187187

188-
output "ICP Admin Username" {
188+
output "icp_admin_username" {
189189
value = "admin"
190190
}
191191

192-
output "ICP Admin Password" {
192+
output "icp_admin_password" {
193193
value = "${local.icppassword}"
194194
}

0 commit comments

Comments
 (0)