File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ output "app_public_url" {
6
6
value = format (" http://%s" , lookup (oci_load_balancer_load_balancer. dotnet_lb . ip_address_details [0 ], " ip_address" ))
7
7
}
8
8
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
+
9
13
# ## Important Security Notice ###
10
14
# The private key generated by this resource will be stored unencrypted in your Terraform state file.
11
15
# Use of this resource for production deployments is not recommended.
Original file line number Diff line number Diff line change @@ -63,4 +63,18 @@ variable "use_only_always_free_elegible_resources" {
63
63
# ORM Schema visual control variables
64
64
variable "show_advanced" {
65
65
default = false
66
+ }
67
+
68
+ # Customizing App
69
+ variable "dotnet_create_standard_webapp" {
70
+ default = true
71
+ }
72
+ variable "dotnet_standard_type" {
73
+ default = " webApp" # E.g.: blazorserver
74
+ }
75
+ variable "dotnet_custom_text_for_standard_webapp" {
76
+ default = " Welcome to the Oracle QuickStart"
77
+ }
78
+ variable "dotnet_git_custom_webapp" {
79
+ default = " https://github.com/aspnet/samples.git"
66
80
}
You can’t perform that action at this time.
0 commit comments