Skip to content

Commit 5d41e42

Browse files
authored
Merge pull request #2181 from oracle/release_gh
Releasing version 6.9.0
2 parents 80bccb8 + b0d7a21 commit 5d41e42

File tree

762 files changed

+52667
-2131
lines changed

Some content is hidden

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

762 files changed

+52667
-2131
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
## 6.9.0 (August 27, 2024)
2+
3+
### Added
4+
- Support for Delegated Access Control for Exadata Cloud Services
5+
- Support for MySQL HeatWave Service: Customer email notification
6+
- Support for ADB-S: NewDev - Developer Databases
7+
- Support for Database Management: Support advanced DBM features for ADB
8+
- 08/06 Support for Sqlwatch integration Added:- 08/06 Support for Sqlwatch integration
9+
- Load Balancer and Waf support for Request Ids (WAF Incident ID support)
10+
- Support for Create Terraform provider for Secure Desktops Desktop as a Service
11+
- Support for Replacing hard-coded list of items on dropdowns on the Console with response from an internal API call
12+
- Support for ADB-S: Provide Availability Domain Details in CP
13+
- Support for KMS Cross Region Replication for Virtual Vaults
14+
- Support subscriptionId attribute for Autonomous Recovery Service (ZRCV)
15+
- Support for High Performance Mount Targets (HPMT)
16+
- Support for VMware Major and Minor Version Upgrade
17+
- Support for Adding domain parameter in DG API
18+
force_delete for ID Users and Groups, groups.members has type of TypeSet
19+
- Support for Use custom diff Suppress for List of Maps in Vm Cluster Resource
20+
- Create _management resource for Unset baseline for Security Assessment and User Assessment in Data Safe
21+
- artifact publish changes for releash_gh branch
22+
trigger for dev branches
23+
### Bug Fix
24+
- Reverted back the changes in Preview SDK
25+
- BDS instance create
26+
127
## 6.8.0 (August 21, 2024)
228

329
### Added

examples/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,12 @@ This directory contains Terraform configuration files showing how to create spec
8181
[![Deploy to Oracle Cloud](https://oci-resourcemanager-plugin.plugins.oci.oraclecloud.com/latest/deploy-to-oracle-cloud.svg)](https://cloud.oracle.com/resourcemanager/stacks/create?zipUrl=https://github.com/oracle/terraform-provider-oci/raw/master/examples/zips/datasafe.zip)
8282
- datascience
8383
[![Deploy to Oracle Cloud](https://oci-resourcemanager-plugin.plugins.oci.oraclecloud.com/latest/deploy-to-oracle-cloud.svg)](https://cloud.oracle.com/resourcemanager/stacks/create?zipUrl=https://github.com/oracle/terraform-provider-oci/raw/master/examples/zips/datascience.zip)
84+
- delegation_management
85+
[![Deploy to Oracle Cloud](https://oci-resourcemanager-plugin.plugins.oci.oraclecloud.com/latest/deploy-to-oracle-cloud.svg)](https://cloud.oracle.com/resourcemanager/stacks/create?zipUrl=https://github.com/oracle/terraform-provider-oci/raw/master/examples/zips/delegation_management.zip)
8486
- demand_signal
8587
[![Deploy to Oracle Cloud](https://oci-resourcemanager-plugin.plugins.oci.oraclecloud.com/latest/deploy-to-oracle-cloud.svg)](https://cloud.oracle.com/resourcemanager/stacks/create?zipUrl=https://github.com/oracle/terraform-provider-oci/raw/master/examples/zips/demand_signal.zip)
88+
- desktops
89+
[![Deploy to Oracle Cloud](https://oci-resourcemanager-plugin.plugins.oci.oraclecloud.com/latest/deploy-to-oracle-cloud.svg)](https://cloud.oracle.com/resourcemanager/stacks/create?zipUrl=https://github.com/oracle/terraform-provider-oci/raw/master/examples/zips/desktops.zip)
8690
- devops
8791
[![Deploy to Oracle Cloud](https://oci-resourcemanager-plugin.plugins.oci.oraclecloud.com/latest/deploy-to-oracle-cloud.svg)](https://cloud.oracle.com/resourcemanager/stacks/create?zipUrl=https://github.com/oracle/terraform-provider-oci/raw/master/examples/zips/devops.zip)
8892
- disaster_recovery

examples/database/dataguard/vm_shape/dataguard.tf

Lines changed: 67 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,66 @@ data "oci_identity_availability_domain" "ad" {
3434
ad_number = 1
3535
}
3636

37-
resource "oci_core_vcn" "vcn1" {
37+
data "oci_core_services" "test_services" {
38+
filter {
39+
name = "name"
40+
values = [".*Oracle.*Services.*Network"]
41+
regex = true
42+
}
43+
}
44+
45+
data "oci_identity_availability_domains" "test_availability_domains" {
46+
compartment_id = var.tenancy_ocid
47+
}
48+
49+
resource "oci_core_vcn" "test_vcn" {
3850
cidr_block = "10.0.0.0/16"
3951
compartment_id = var.compartment_ocid
4052
display_name = "TFExampleVCN"
4153
dns_label = "tfexamplevcn"
4254
}
4355

56+
resource "oci_core_service_gateway" "test_service_gateway" {
57+
compartment_id = var.compartment_ocid
58+
display_name = "test_service_gateway"
59+
vcn_id = oci_core_vcn.test_vcn.id
60+
61+
services {
62+
service_id = data.oci_core_services.test_services.services.0.id
63+
}
64+
65+
}
66+
67+
resource "oci_core_default_route_table" "test_vcn__default_route_table" {
68+
manage_default_resource_id = oci_core_vcn.test_vcn.default_route_table_id
69+
70+
route_rules {
71+
network_entity_id = oci_core_service_gateway.test_service_gateway.id
72+
73+
description = "Internal traffic for OCI Services"
74+
destination = data.oci_core_services.test_services.services[0].cidr_block
75+
destination_type = "SERVICE_CIDR_BLOCK"
76+
}
77+
}
78+
79+
resource "oci_core_route_table" "test_route_table" {
80+
compartment_id = var.compartment_ocid
81+
display_name = "test_subnet_rt"
82+
vcn_id = oci_core_vcn.test_vcn.id
83+
84+
route_rules {
85+
network_entity_id = oci_core_service_gateway.test_service_gateway.id
86+
87+
description = "Internal traffic for OCI Services"
88+
destination = data.oci_core_services.test_services.services[0].cidr_block
89+
destination_type = "SERVICE_CIDR_BLOCK"
90+
}
91+
}
92+
4493
resource "oci_core_security_list" "test_security_list" {
4594
compartment_id = var.compartment_ocid
46-
vcn_id = oci_core_vcn.vcn1.id
47-
display_name = "TFExampleSecurityList"
95+
vcn_id = oci_core_vcn.test_vcn.id
96+
display_name = "test_security_list"
4897

4998
// allow outbound tcp traffic on all ports
5099
egress_security_rules {
@@ -58,21 +107,21 @@ resource "oci_core_security_list" "test_security_list" {
58107
}
59108
}
60109

61-
// An AD based subnet will supply an Availability Domain
62110
resource "oci_core_subnet" "test_subnet" {
63-
availability_domain = data.oci_identity_availability_domain.ad.name
64-
cidr_block = "10.0.2.0/24"
65-
display_name = "TFADSubnet"
66-
dns_label = "adsubnet"
67-
compartment_id = var.compartment_ocid
68-
vcn_id = oci_core_vcn.vcn1.id
69-
security_list_ids = [oci_core_security_list.test_security_list.id]
70-
route_table_id = oci_core_vcn.vcn1.default_route_table_id
71-
dhcp_options_id = oci_core_vcn.vcn1.default_dhcp_options_id
111+
cidr_block = "10.0.2.0/24"
112+
compartment_id = var.compartment_ocid
113+
vcn_id = oci_core_vcn.test_vcn.id
114+
display_name = "test_subnet"
115+
security_list_ids = [oci_core_security_list.test_security_list.id]
116+
route_table_id = oci_core_route_table.test_route_table.id
117+
dhcp_options_id = oci_core_vcn.test_vcn.default_dhcp_options_id
118+
dns_label = "tftestsubnet"
119+
prohibit_public_ip_on_vnic = "true"
72120
}
73121

122+
74123
resource "oci_database_db_system" "test_db_system" {
75-
availability_domain = oci_core_subnet.test_subnet.availability_domain
124+
availability_domain = data.oci_identity_availability_domains.test_availability_domains.availability_domains.0.name
76125
compartment_id = var.compartment_ocid
77126
subnet_id = oci_core_subnet.test_subnet.id
78127
database_edition = "ENTERPRISE_EDITION"
@@ -125,12 +174,12 @@ resource "oci_database_data_guard_association" "test_data_guard_association" {
125174
display_name = "TFExampleDataGuardAssociationVM"
126175
shape = "VM.Standard2.1"
127176
subnet_id = oci_core_subnet.test_subnet.id
128-
availability_domain = oci_core_subnet.test_subnet.availability_domain
177+
availability_domain = data.oci_identity_availability_domains.test_availability_domains.availability_domains.0.name
129178
nsg_ids = [oci_core_network_security_group.test_network_security_group.id]
130179
hostname = "ocidb"
131-
db_system_defined_tags = "${map("example-tag-namespace-all.example-tag", "dbSystemDefinedTags1")}"
180+
db_system_defined_tags = map("example-tag-namespace-all.example-tag", "dbSystemDefinedTags1")
132181
db_system_freeform_tags = {"dbSystemFreeformTagsK" = "dbSystemFreeformTagsV"}
133-
database_defined_tags = "${map("example-tag-namespace-all.example-tag", "databaseDefinedTags1")}"
182+
database_defined_tags = map("example-tag-namespace-all.example-tag", "databaseDefinedTags1")
134183
database_freeform_tags = {"databaseFreeformTagsK" = "databaseFreeformTagsV"}
135184
fault_domains = ["FAULT-DOMAIN-3"]
136185
license_model = "LICENSE_INCLUDED"
@@ -142,7 +191,7 @@ resource "oci_database_data_guard_association" "test_data_guard_association" {
142191

143192
resource "oci_core_network_security_group" "test_network_security_group" {
144193
compartment_id = var.compartment_ocid
145-
vcn_id = oci_core_vcn.vcn1.id
194+
vcn_id = oci_core_vcn.test_vcn.id
146195
display_name = "tf-example-nsg"
147196
}
148197

0 commit comments

Comments
 (0)