Skip to content

Commit 97f8117

Browse files
committed
basic schema fix
1 parent 34dfa61 commit 97f8117

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

deploy/basic/terraform/outputs.tf

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
33
#
44

5+
output "lb_public_url_button" {
6+
value = format("http://%s", lookup(oci_load_balancer_load_balancer.mushop_lb.ip_address_details[0], "ip_address"))
7+
}
58
output "lb_public_url" {
69
value = format("http://%s", lookup(oci_load_balancer_load_balancer.mushop_lb.ip_address_details[0], "ip_address"))
710
}

deploy/basic/terraform/schema.yaml

+9-2
Original file line numberDiff line numberDiff line change
@@ -541,14 +541,21 @@ outputGroups:
541541
- mushop_version
542542

543543
outputs:
544+
lb_public_url_button:
545+
type: link
546+
title: MuShop URL Button
547+
displayText: Open MuShop
548+
visible: true
549+
544550
lb_public_url:
545551
type: link
546-
title: Open
552+
title: MuShop
553+
displayText: Storefront
547554
visible: true
548555

549556
lb_nip_host_url:
550557
type: link
551-
title: "Hostname"
558+
title: "Alternative Hostname"
552559
visible: true
553560

554561
autonomous_database_password:

0 commit comments

Comments
 (0)