You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "The compartment in which to create compute instance(s) and ATP."
69
+
70
+
num_instances:
71
+
type: enum
72
+
enum:
73
+
- "1"
74
+
- "2"
75
+
title: "Number of Instances"
76
+
description: "Choose the number of compute instances to deploy."
77
+
default: "2"
78
+
required: true
79
+
80
+
show_advanced:
81
+
type: boolean
82
+
title: "Show advanced options?"
83
+
description: "Shows advanced options, select your ssh key, and other advanced options."
84
+
visible: true
85
+
86
+
generate_public_ssh_key:
87
+
type: boolean
88
+
title: "Auto-generate public ssh key?"
89
+
description: "Auto-generate a public key and assign to the compute instances. Uncheck to provide your own public key or leave blank not to use any attach any key to the compute instance."
90
+
visible:
91
+
and:
92
+
- show_advanced
93
+
94
+
public_ssh_key:
95
+
type: oci:core:ssh:publickey
96
+
title: "SSH Public Key"
97
+
description: "The public SSH key for the key-pair that you want to use, if you wish to login to the instances over SSH."
description: "*** Unchecking this may use options that are not included or supported by Always Free eligible resources."
112
+
visible:
113
+
and:
114
+
- show_advanced
115
+
116
+
dotnet_standard_type:
117
+
type: enum
118
+
enum:
119
+
- "webApp"
120
+
- "blazorserver"
121
+
title: "Select the DotNet type to be created"
122
+
description: "WebApp creates the standard ASP.Net Core app. BlazorServer, creates sample with blazor pages."
123
+
required: true
124
+
visible:
125
+
and:
126
+
- show_advanced
127
+
128
+
dotnet_custom_text_for_standard_webapp:
129
+
type: string
130
+
title: "Custom Text to show on the Home Page"
131
+
description: "Changes the standard Welcome message on the ASP.Net WebApp page."
132
+
required: true
133
+
visible:
134
+
and:
135
+
- show_advanced
136
+
137
+
lb_shape:
138
+
type: enum
139
+
enum:
140
+
- "10Mbps-Micro"
141
+
- "100Mbps"
142
+
- "400Mbps"
143
+
- "8000Mbps"
144
+
title: "Select a shape for the load balancer"
145
+
description: "A load balancer provides automated traffic distribution from one entry point to multiple servers in a backend set. The load balancer ensures that your services remain available by directing traffic only to healthy servers in the backend set."
146
+
visible:
147
+
and:
148
+
- and:
149
+
- show_advanced
150
+
- not:
151
+
- use_only_always_free_elegible_resources
152
+
153
+
instance_shape:
154
+
type: oci:core:instanceshape:name
155
+
title: "Select a shape for the compute instances"
156
+
description: "A shape is a template that determines the number of CPUs, amount of memory, and other resources allocated to a newly created instance."
157
+
dependsOn:
158
+
compartmentId: compartment_ocid
159
+
required: true
160
+
visible:
161
+
and:
162
+
- and:
163
+
- show_advanced
164
+
- not:
165
+
- use_only_always_free_elegible_resources
166
+
167
+
image_operating_system:
168
+
type: string
169
+
title: "Compute Image OS"
170
+
description: "The OS/image installed on all compute instances."
171
+
required: true
172
+
visible:
173
+
and:
174
+
- and:
175
+
- show_advanced
176
+
- not:
177
+
- use_only_always_free_elegible_resources
178
+
179
+
image_operating_system_version:
180
+
type: string
181
+
title: "Compute Image OS Version"
182
+
description: "The OS/image version installed on all compute instances."
183
+
required: true
184
+
visible:
185
+
and:
186
+
- and:
187
+
- show_advanced
188
+
- not:
189
+
- use_only_always_free_elegible_resources
190
+
191
+
instance_visibility:
192
+
type: enum
193
+
enum:
194
+
- "Public"
195
+
- "Private"
196
+
title: "Choose instance visibility type"
197
+
description: "The instance visibility will define if assign a public ip address to the compute instance and if the subnet is public or private."
198
+
visible:
199
+
and:
200
+
- and:
201
+
- show_advanced
202
+
- not:
203
+
- use_only_always_free_elegible_resources
204
+
205
+
outputGroups:
206
+
- title: "ASP.Net App details"
207
+
outputs:
208
+
- lb_public_url
209
+
- generated_private_key_pem
210
+
- deploy_id
211
+
- deployed_to_region
212
+
- dotnet_template_used
213
+
- dev
214
+
- comments
215
+
216
+
outputs:
217
+
lb_public_url:
218
+
type: link
219
+
title: Open
220
+
visible: true
221
+
222
+
generated_private_key_pem:
223
+
type: string
224
+
title: "Generated Private Key for SSH Access"
225
+
displayText: "Generated Private Key for ssh access to compute nodes"
226
+
visible: true
227
+
228
+
dev:
229
+
type: string
230
+
title: "Message"
231
+
visible: true
232
+
233
+
dotnet_template_used:
234
+
type: string
235
+
title: "Message"
236
+
visible: true
237
+
238
+
deploy_id:
239
+
type: string
240
+
title: "Deployment Id"
241
+
visible: true
242
+
243
+
deployed_to_region:
244
+
type: string
245
+
title: "Deployed using Region"
246
+
visible: true
247
+
248
+
comments:
249
+
type: string
250
+
title: "Comments"
251
+
displayText: "The application URL will be unavailable for a few minutes after provisioning, while the application is configured"
0 commit comments