Skip to content

Commit 7c087ff

Browse files
authored
Merge pull request #2386 from oracle/release_gh
Releasing version 7.2.0
2 parents 248e33d + 3d2b7f5 commit 7c087ff

File tree

214 files changed

+797
-48
lines changed

Some content is hidden

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

214 files changed

+797
-48
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions

examples/mysql/cross_region_backup/main.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ variable "compartment_ocid" {
3636
}
3737

3838
provider "oci" {
39+
# un-ignore to run backwards compatibility testing
40+
#version = "6.32.0"
3941
tenancy_ocid = var.tenancy_ocid
4042
user_ocid = var.user_ocid
4143
fingerprint = var.fingerprint

examples/mysql/main.tf

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ variable "compartment_ocid" {
2020
}
2121

2222
provider "oci" {
23+
# un-ignore to run backwards compatibility testing
24+
#version = "6.32.0"
2325
tenancy_ocid = var.tenancy_ocid
2426
user_ocid = var.user_ocid
2527
fingerprint = var.fingerprint
@@ -38,6 +40,11 @@ resource "oci_core_vcn" "test_vcn" {
3840
compartment_id = var.compartment_ocid
3941
}
4042

43+
resource "oci_core_network_security_group" "test_network_security_group" {
44+
compartment_id = var.compartment_ocid
45+
vcn_id = oci_core_vcn.test_vcn.id
46+
}
47+
4148
resource "oci_mysql_mysql_backup" "test_mysql_backup" {
4249
db_system_id = oci_mysql_mysql_db_system.test_mysql_backup_db_system.id
4350
}
@@ -111,6 +118,7 @@ resource "oci_mysql_mysql_db_system" "test_mysql_db_system" {
111118
window_start_time = "sun 01:00"
112119
}
113120

121+
nsg_ids = [oci_core_network_security_group.test_network_security_group.id]
114122
port = "3306"
115123
port_x = "33306"
116124

@@ -169,6 +177,16 @@ data "oci_identity_availability_domains" "test_availability_domains" {
169177
compartment_id = var.tenancy_ocid
170178
}
171179

180+
data "oci_mysql_mysql_db_system" "test_mysql_db_system" {
181+
#Required
182+
db_system_id = oci_mysql_mysql_db_system.test_mysql_backup_db_system.id
183+
}
184+
185+
data "oci_mysql_mysql_backup" "test_mysql_backup" {
186+
#Required
187+
backup_id = oci_mysql_mysql_backup.test_mysql_backup.id
188+
}
189+
172190
output "configuration_id" {
173191
value = data.oci_mysql_mysql_configurations.test_mysql_configurations.configurations[0].id
174192
}

examples/mysql/replica/main.tf

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,16 @@ variable "region" {
1919
variable "compartment_ocid" {
2020
}
2121

22+
provider "oci" {
23+
# un-ignore to run backwards compatibility testing
24+
#version = "6.32.0"
25+
tenancy_ocid = var.tenancy_ocid
26+
user_ocid = var.user_ocid
27+
fingerprint = var.fingerprint
28+
private_key_path = var.private_key_path
29+
region = var.region
30+
}
31+
2232
resource "oci_core_subnet" "test_subnet" {
2333
cidr_block = "10.0.0.0/24"
2434
compartment_id = var.compartment_ocid
@@ -30,6 +40,11 @@ resource "oci_core_vcn" "test_vcn" {
3040
compartment_id = var.compartment_ocid
3141
}
3242

43+
resource "oci_core_network_security_group" "test_network_security_group" {
44+
compartment_id = var.compartment_ocid
45+
vcn_id = oci_core_vcn.test_vcn.id
46+
}
47+
3348
resource "oci_mysql_mysql_db_system" "test_mysql_db_system" {
3449
#Required
3550
admin_password = "BEstrO0ng_#11"
@@ -98,7 +113,9 @@ resource "oci_mysql_replica" "test_replica" {
98113
is_delete_protected = false
99114
replica_overrides {
100115
configuration_id = data.oci_mysql_mysql_configurations.test_mysql_configurations.configurations[0].id
101-
mysql_version = "8.1.0"
116+
# TODO: fix unsupported version
117+
#mysql_version = "8.1.0"
118+
nsg_ids = [oci_core_network_security_group.test_network_security_group.id]
102119
shape_name = "MySQL.VM.Standard.E3.4.64GB"
103120
}
104121
}

examples/zips/adm.zip

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

examples/zips/aiDocument.zip

0 Bytes
Binary file not shown.

examples/zips/aiLanguage.zip

0 Bytes
Binary file not shown.

examples/zips/aiVision.zip

0 Bytes
Binary file not shown.

examples/zips/always_free.zip

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)