Skip to content

Commit 8661d34

Browse files
committed
fmt
1 parent 8e87156 commit 8661d34

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

datasources.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ data "template_file" "deploy_template" {
120120
template = file("${path.module}/scripts/deploy.template.sh")
121121

122122
vars = {
123-
dotnet_standard_type = var.dotnet_standard_type
123+
dotnet_standard_type = var.dotnet_standard_type
124124
dotnet_custom_text_for_standard_webapp = var.dotnet_custom_text_for_standard_webapp
125-
dotnet_git_custom_webapp = var.dotnet_git_custom_webapp
125+
dotnet_git_custom_webapp = var.dotnet_git_custom_webapp
126126
}
127127
}

outputs.tf

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,10 @@
22
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
33
#
44

5-
output "app_public_url" {
5+
output "lb_public_url" {
66
value = format("http://%s", lookup(oci_load_balancer_load_balancer.dotnet_lb.ip_address_details[0], "ip_address"))
77
}
88

9-
output "public_ips" {
10-
value = "rm private_key && pbpaste > private_key && chmod 600 private_key && ssh -oStrictHostKeyChecking=accept-new -i private_key ubuntu@${oci_core_instance.app_instance.0.public_ip}"
11-
}
12-
139
### Important Security Notice ###
1410
# The private key generated by this resource will be stored unencrypted in your Terraform state file.
1511
# Use of this resource for production deployments is not recommended.

0 commit comments

Comments
 (0)