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
Copy file name to clipboardExpand all lines: cd3_automation_toolkit/documentation/user_guide/learn_more/Tabs.md
+63Lines changed: 63 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -107,6 +107,7 @@ This contains information about DHCP options to be created for each VCN.
107
107
1. Name of the VCNs, subnets etc are all case sensitive. Specify the same names in all required places. Avoid trailing spaces for a resource Name.
108
108
109
109
2. Default Route Rules created are :
110
+
110
111
a. Based on the values entered in columns ‘configure SGW route’, ‘configure NGW route’, ‘configure IGW route’, 'configure Onprem route' and 'configure VCNPeering route' in Subnets sheet; if the value entered is ‘y’, it will create a route for the object in that subnet
111
112
eg if ‘configure IGW’ in Subnets sheet is ‘y’ then it will read parameter ‘igw_destination’ in VCN Info tab and create a rule in the subnet with destination object as IGW of the VCN and destination CIDR as value of igw_destnation field.
112
113
If comma separated values are entered in the igw_destination in VCN Info tab then the tool creates route rule for each destination cidr for IGW in that subnet.
@@ -116,7 +117,9 @@ b. For a hub spoke model, tool automatically creates route tables attached with
116
117
‘onprem_destinations’ in VCN Info tab specifies the On Prem Network CIDRs.
117
118
118
119
3. The below Default Security Rules are created:
120
+
119
121
a. Egress rule allowing all protocols for 0.0.0.0/0 is opened.
122
+
120
123
b. Ingress rule allowing all protocols for subnet CIDR is opened. This is to allow communication between VMs with in the same subnet.
121
124
122
125
4. Default Security List of the VCN is attached to the subnet if ‘add_default_seclist’ parameter in Subnets tab is set to ‘y’.
@@ -192,5 +195,65 @@ If you want to update or add new dedicated VM hosts, update the 'DedicatedVMHost
192
195
193
196
On re-running the same option you will find the previously existing files being backed up under directory → \<outdir>/\<region>/backup_dedicatedvmhosts/\<Date>-\<Month>-\<Time>.
194
197
198
+
## Instances Tab
199
+
200
+
201
+
<ins>CD3 Tab Specifications:</ins>
202
+
203
+
1. "Display Name" column is case sensitive. Specified value will be the display name of Instance in OCI console.
204
+
205
+
2. Optional columns can also be left blank - like Fault Domain, IP Address. They will take default values when left empty.
206
+
207
+
3. Leave columns: Backup Policy, NSGs, DedicatedVMHost blank if instance doesn't need to be part of any of these. Instances can be made a part of Backup Policy and NSGs later by choosing appropriate option in setUpOCI menu.
208
+
209
+
4. For column SSH Key Var Name accepts SSH key value directly or the name of variable decalred in variables.tf containing the key value. Make sure to have an entry in variables_\<region>.tf file with the name you enter in SSH Key Var Name field of the Excel sheet and put the value as SSK key value.
210
+
Ex: If you enter the SSH Key Var Name as ocs_public, make an entry in variables_\<region>.tf file as shown below:
211
+
212
+
213
+
variable "\<value entered in SSH Key Var Name field of Excel sheet>"; here it will be as below:
214
+
215
+
variable 'ocs_public' {
216
+
default = "<paste your public key here>"
217
+
}
218
+
219
+
The value accepts multiple keys seperated by \n
220
+
221
+
222
+
6. Enter subnet name column value as: \<vcn-name>_\<subnet-name>
223
+
224
+
7. Source Details column of the excel sheet accepts both image and boot volume as the source for instance to be launched.
225
+
Format -
226
+
227
+
image::\<variable containing ocid of image> or
228
+
bootVolume::\<variable containing ocid of boot volume>
229
+
230
+
Make sure to have an entry in variables_\<region>.tf file for the value you enter in Source Details field of the Excel sheet.
231
+
Ex: If you enter the Source Details as image::Linux, make an entry in variables_\<region>.tf file as shown below:
232
+
233
+
variable "\<value entered in Source Details field of Excel sheet>"; here it will be:
234
+
235
+
variable 'Linux' {
236
+
default = "<ocid of the image/bootVolume to launch the instance from>"
237
+
}
238
+
239
+
8. Mention shape to be used in Shape column of the excel sheet. If Flex shape is to be used format is:
240
+
241
+
shape::ocpus
242
+
243
+
eg: VM.Standard.E3.Flex::5
244
+
245
+
246
+
9. Custom Policy Compartment Name : Specify the compartment name where the Custom Policy is created.
247
+
248
+
10. While export of instances, it will fetch details for only the primary VNIC attached to the instance
249
+
250
+
251
+
On choosing **"Compute"** in the SetUpOCI menu and **"Add/Modify/Delete Instances/Boot Backup Policy"** submenu will allow to launch your VM on OCI tenancy.
252
+
253
+
254
+
255
+
Output terraform file generated: \<outdir>/\<region>/\<prefix>_instances.auto.tfvars and \<outdir>/\<region>/\<prefix>_boot-backup-policy.auto.tfvars under appropriate \<region> directory.
195
256
257
+
Once the terraform apply is complete, view the resources under Compute -> Instances for the region.
196
258
259
+
On re-running the same option you will find the previously existing files being backed up under directory → \<outdir>/\<region>/backup_instances/\<Date>-\<Month>-\<Time>.
0 commit comments