Skip to content
This repository was archived by the owner on May 13, 2024. It is now read-only.

Commit bed1db5

Browse files
committed
Updated files for 1.2
1 parent 64bc538 commit bed1db5

File tree

3 files changed

+24
-10
lines changed

3 files changed

+24
-10
lines changed

provider.tf

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,30 @@
22
## All rights reserved. The Universal Permissive License (UPL), Version 1.0 as shown at http://oss.oracle.com/licenses/upl
33

44
provider "oci" {
5-
region = var.region
6-
tenancy_ocid = var.tenancy_ocid
7-
5+
region = var.region
6+
tenancy_ocid = var.tenancy_ocid
7+
88
#### BEGIN COMMENT OUT FOR USAGE ON ORM AND/OR CLOUD SHELL
99
user_ocid = var.user_ocid
1010
fingerprint = var.fingerprint
1111
private_key = local.private_key
1212
private_key_password = var.private_key_password
1313
#### END COMMENT OUT FOR USAGE ON ORM AND/OR CLOUD SHELL
14-
14+
1515
disable_auto_retries = "true"
1616
}
1717

1818
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+
2323
#### BEGIN COMMENT OUT FOR USAGE ON ORM AND/OR CLOUD SHELL
2424
user_ocid = var.user_ocid
2525
fingerprint = var.fingerprint
2626
private_key = local.private_key
2727
private_key_password = var.private_key_password
2828
#### END COMMENT OUT FOR USAGE ON ORM AND/OR CLOUD SHELL
29-
29+
3030
disable_auto_retries = "true"
3131
}

schema.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,12 @@
196196
- eq:
197197
- instance_shape
198198
- "VM.Standard.E4.Flex"
199+
- eq:
200+
- instance_shape
201+
- "VM.Optimized3.Flex"
202+
- eq:
203+
- instance_shape
204+
- "VM.Standard.A1.Flex"
199205

200206
instance_flex_shape_memory:
201207
type: number
@@ -215,6 +221,12 @@
215221
- eq:
216222
- instance_shape
217223
- "VM.Standard.E4.Flex"
224+
- eq:
225+
- instance_shape
226+
- "VM.Optimized3.Flex"
227+
- eq:
228+
- instance_shape
229+
- "VM.Standard.A1.Flex"
218230

219231
instance_os:
220232
type: enum

variables.tf

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,9 @@ locals {
131131
# Dictionary Locals
132132
compute_flexible_shapes = [
133133
"VM.Standard.E3.Flex",
134-
"VM.Standard.E4.Flex"
134+
"VM.Standard.E4.Flex",
135+
"VM.Optimized3.Flex",
136+
"VM.Standard.A1.Flex"
135137
]
136138
# Checks if is using Flexible Compute Shapes
137139
is_flexible_node_shape = contains(local.compute_flexible_shapes, var.instance_shape)

0 commit comments

Comments
 (0)