This repository was archived by the owner on May 13, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +24
-10
lines changed Expand file tree Collapse file tree 3 files changed +24
-10
lines changed Original file line number Diff line number Diff line change 2
2
# # All rights reserved. The Universal Permissive License (UPL), Version 1.0 as shown at http://oss.oracle.com/licenses/upl
3
3
4
4
provider "oci" {
5
- region = var. region
6
- tenancy_ocid = var. tenancy_ocid
7
-
5
+ region = var. region
6
+ tenancy_ocid = var. tenancy_ocid
7
+
8
8
# ### BEGIN COMMENT OUT FOR USAGE ON ORM AND/OR CLOUD SHELL
9
9
user_ocid = var. user_ocid
10
10
fingerprint = var. fingerprint
11
11
private_key = local. private_key
12
12
private_key_password = var. private_key_password
13
13
# ### END COMMENT OUT FOR USAGE ON ORM AND/OR CLOUD SHELL
14
-
14
+
15
15
disable_auto_retries = " true"
16
16
}
17
17
18
18
provider "oci" {
19
- alias = " homeregion"
20
- region = data. oci_identity_region_subscriptions . home_region_subscriptions . region_subscriptions [0 ]. region_name
21
- tenancy_ocid = var. tenancy_ocid
22
-
19
+ alias = " homeregion"
20
+ region = data. oci_identity_region_subscriptions . home_region_subscriptions . region_subscriptions [0 ]. region_name
21
+ tenancy_ocid = var. tenancy_ocid
22
+
23
23
# ### BEGIN COMMENT OUT FOR USAGE ON ORM AND/OR CLOUD SHELL
24
24
user_ocid = var. user_ocid
25
25
fingerprint = var. fingerprint
26
26
private_key = local. private_key
27
27
private_key_password = var. private_key_password
28
28
# ### END COMMENT OUT FOR USAGE ON ORM AND/OR CLOUD SHELL
29
-
29
+
30
30
disable_auto_retries = " true"
31
31
}
Original file line number Diff line number Diff line change 196
196
- eq :
197
197
- instance_shape
198
198
- " VM.Standard.E4.Flex"
199
+ - eq :
200
+ - instance_shape
201
+ - " VM.Optimized3.Flex"
202
+ - eq :
203
+ - instance_shape
204
+ - " VM.Standard.A1.Flex"
199
205
200
206
instance_flex_shape_memory :
201
207
type : number
215
221
- eq :
216
222
- instance_shape
217
223
- " VM.Standard.E4.Flex"
224
+ - eq :
225
+ - instance_shape
226
+ - " VM.Optimized3.Flex"
227
+ - eq :
228
+ - instance_shape
229
+ - " VM.Standard.A1.Flex"
218
230
219
231
instance_os :
220
232
type : enum
Original file line number Diff line number Diff line change @@ -131,7 +131,9 @@ locals {
131
131
# Dictionary Locals
132
132
compute_flexible_shapes = [
133
133
" VM.Standard.E3.Flex" ,
134
- " VM.Standard.E4.Flex"
134
+ " VM.Standard.E4.Flex" ,
135
+ " VM.Optimized3.Flex" ,
136
+ " VM.Standard.A1.Flex"
135
137
]
136
138
# Checks if is using Flexible Compute Shapes
137
139
is_flexible_node_shape = contains (local. compute_flexible_shapes , var. instance_shape )
You can’t perform that action at this time.
0 commit comments