Skip to content

Commit 2266841

Browse files
Merge pull request #2253 from oracle/release_gh
Releasing version 6.20.0
2 parents 30d6d23 + 065379b commit 2266841

File tree

398 files changed

+22340
-3081
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

398 files changed

+22340
-3081
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions

examples/compute/instance_pool/instance_pool_platform_config.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,9 @@ resource "oci_core_instance_configuration" "test_instance_configuration_platform
6565
platform_config {
6666
type = var.instance_configuration_platform_config_type
6767
numa_nodes_per_socket = var.instance_configuration_platform_config_numa_nodes_per_socket
68+
is_secure_boot_enabled = true
69+
is_trusted_platform_module_enabled = true
70+
is_measured_boot_enabled = true
6871
}
6972

7073
create_vnic_details {

examples/dataflow/main.tf

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,19 @@ resource "oci_dataflow_pool" "test_pool" {
8282
freeform_tags = {
8383
"Department" = "Finance"
8484
}
85-
configurations = [{shape: "VM.Standard2.1", shapeConfig: {ocpus: 1, memoryInGBs: 15}, min: 0, max: 1}]
86-
schedules = [{dayOfWeek: "SUNDAY", startTime: 3}]
85+
configurations {
86+
shape = "VM.Standard2.1"
87+
shape_config {
88+
ocpus = 1
89+
memory_in_gbs = 15
90+
}
91+
min = 0
92+
max = 1
93+
}
94+
schedules {
95+
day_of_week = "SUNDAY"
96+
start_time = 3
97+
}
8798
}
8899

89100
resource "oci_dataflow_application" "tf_application" {
@@ -116,6 +127,7 @@ resource "oci_dataflow_application" "tf_application" {
116127

117128
#warehouse_bucket_uri = var.application_warehouse_bucket_uri}"
118129
metastore_id = var.metastore_id
130+
terminate_runs_on_deletion = true
119131
}
120132

121133
data "oci_dataflow_applications" "tf_applications" {

examples/desktops/desktop_pool/main.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ resource "oci_desktops_desktop_pool" "test_desktop_pool" {
5252
storage_backup_policy_id = var.desktop_pool_backup_policy_id
5353
storage_size_in_gbs = var.desktop_pool_storage_size_in_gbs
5454

55+
are_volumes_preserved = var.desktop_pool_are_volumes_preserved
56+
5557
shape_name = var.desktop_pool_shape_name
5658
standby_size = var.desktop_pool_standby_size
5759
maximum_size = var.desktop_pool_maximum_size

examples/desktops/desktop_pool/session_lifecycle_management/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ resource "oci_desktops_desktop_pool" "test_desktop_pool" {
3737
# Important: Availability policy can not be set when DISCONNECT Session Lifecycle Action is being set but
3838
# "availability_policy" element without start nor stop schedules needs to be present
3939
availability_policy {
40+
4041
}
4142

4243
is_storage_enabled = var.desktop_pool_is_storage_enabled

examples/desktops/desktop_pool/variables.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,11 @@ variable "desktop_pool_storage_size_in_gbs" {
103103
default = 50
104104
}
105105

106+
variable "desktop_pool_are_volumes_preserved" {
107+
description = "Indicates whether the volumes are preserved when a desktop pool is deleted"
108+
default = false
109+
}
110+
106111
variable "desktop_pool_vcn_id" {
107112
description = ""
108113
}

examples/disaster_recovery/dr_plan/dr_plan.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ resource "oci_disaster_recovery_dr_plan" "test_dr_plan" {
4949
display_name = var.dr_plan_display_name
5050
dr_protection_group_id = data.oci_disaster_recovery_dr_protection_groups.test_dr_protection_groups.dr_protection_group_collection.0.items.0.id
5151
type = var.dr_plan_type
52+
refresh_trigger = 0
53+
verify_trigger = 0
5254

5355
lifecycle {
5456
ignore_changes = [defined_tags]
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
2+
variable "tenancy_ocid" {
3+
# default = ""
4+
}
5+
6+
variable "ssh_public_key" {
7+
# default = ""
8+
}
9+
10+
variable "region" {
11+
default = "us-ashburn-1"
12+
}
13+
14+
variable "compartment_id" {
15+
# default = ""
16+
}
17+
18+
variable "compliance_policy_id" {
19+
# default = ""
20+
}
21+
22+
data "oci_fleet_apps_management_compliance_policies" "test_compliance_policies" {
23+
compartment_id = "${var.compartment_id}"
24+
}
25+
26+
resource "oci_fleet_apps_management_compliance_policy_rule" "test_compliance_policy_rule" {
27+
compartment_id = "${var.compartment_id}"
28+
compliance_policy_id = "${var.compliance_policy_id}"
29+
display_name = "displayName"
30+
freeform_tags = {
31+
"Department" = "Finance"
32+
}
33+
grace_period = "gracePeriod2"
34+
patch_selection {
35+
days_since_release = "0"
36+
patch_level = "LATEST"
37+
selection_type = "PATCH_LEVEL"
38+
}
39+
patch_type = ["Security"]
40+
product_version {
41+
is_applicable_for_all_higher_versions = "false"
42+
version = "9"
43+
}
44+
severity = ["LOW"]
45+
}

examples/fleet_apps_management/fleet/fleet.tf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,6 @@ variable "fleet_state" {
8888
default = "NEEDS_ATTENTION"
8989
}
9090

91-
92-
9391
provider "oci" {
9492
tenancy_ocid = var.tenancy_ocid
9593
user_ocid = var.user_ocid
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
2+
variable "tenancy_ocid" {
3+
# default = ""
4+
}
5+
6+
variable "ssh_public_key" {
7+
# default = ""
8+
}
9+
10+
variable "region" {
11+
default = "us-ashburn-1"
12+
}
13+
14+
variable "compartment_id" {
15+
# default = ""
16+
}
17+
18+
variable "compatible_product_id" {
19+
# default = ""
20+
}
21+
22+
variable "credential_id" {
23+
# default = ""
24+
}
25+
26+
variable "patch_type_id" {
27+
# default = ""
28+
}
29+
30+
resource "oci_fleet_apps_management_platform_configuration" "test_platform_configuration" {
31+
compartment_id = "${var.compartment_id}"
32+
config_category_details {
33+
compatible_products {
34+
id = "${var.compatible_product_id}"
35+
}
36+
components = ["components2"]
37+
config_category = "PRODUCT"
38+
credentials {
39+
id = "${var.credential_id}"
40+
}
41+
patch_types {
42+
id = "${var.patch_type_id}"
43+
}
44+
versions = ["versions2"]
45+
}
46+
description = "description2"
47+
display_name = "displayName2"
48+
}

0 commit comments

Comments
 (0)