Skip to content

Commit e58f85e

Browse files
Releasing version 4.59.0
Releasing version 4.59.0
2 parents b869956 + e4528d3 commit e58f85e

File tree

11,749 files changed

+118281
-115103
lines changed

Some content is hidden

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

11,749 files changed

+118281
-115103
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 4.59.0 (Unreleased)
2+
3+
### Added
4+
- Support for allow customer to choose Dataguard type
5+
- Support For - Standard Tags
6+
- Support for - DevOps Project Service - fixed defined tags assertion test case fix
7+
- Support for BDS - Object Store Integration
8+
- Support for IPv6 support on Network Load Balancer
9+
- Support for NLB Support Multiple Protocol on Same Listener
10+
111
## 4.58.0 (January 05, 2022)
212

313
### Bug Fix
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
// Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
2+
// Licensed under the Mozilla Public License v2.0
3+
4+
variable "tenancy_ocid" {}
5+
variable "user_ocid" {}
6+
variable "fingerprint" {}
7+
variable "private_key_path" {}
8+
variable "region" {}
9+
variable "bds_instance_id" {}
10+
11+
variable "bds_instance_api_key_default_region" {
12+
default = "us-ashburn-1"
13+
}
14+
15+
variable "bds_instance_api_key_display_name" {
16+
default = "keyAlias"
17+
}
18+
19+
variable "bds_instance_api_key_key_alias" {
20+
default = "keyAlias"
21+
}
22+
23+
variable "bds_instance_api_key_passphrase" {
24+
default = "V2VsY29tZTE="
25+
}
26+
27+
variable "bds_instance_api_key_state" {
28+
default = "ACTIVE"
29+
}
30+
31+
32+
33+
provider "oci" {
34+
tenancy_ocid = var.tenancy_ocid
35+
user_ocid = var.user_ocid
36+
fingerprint = var.fingerprint
37+
private_key_path = var.private_key_path
38+
region = var.region
39+
}
40+
41+
resource "oci_bds_bds_instance_api_key" "test_bds_instance_api_key" {
42+
#Required
43+
bds_instance_id = var.bds_instance_id
44+
key_alias = var.bds_instance_api_key_key_alias
45+
passphrase = var.bds_instance_api_key_passphrase
46+
user_id = var.user_ocid
47+
48+
#Optional
49+
default_region = var.bds_instance_api_key_default_region
50+
}
51+
52+
data "oci_bds_bds_instance_api_keys" "test_bds_instance_api_keys" {
53+
#Required
54+
bds_instance_id = var.bds_instance_id
55+
56+
#Optional
57+
state = var.bds_instance_api_key_state
58+
}
59+

examples/database/dataguard/exadata_shape/main.tf

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,22 @@ resource "oci_database_db_system" "test_db_system" {
4444
hours_of_day = ["4"]
4545
lead_time_in_weeks = 2
4646

47+
months {
48+
name = "JANUARY"
49+
}
50+
4751
months {
4852
name = "APRIL"
4953
}
5054

55+
months {
56+
name = "JULY"
57+
}
58+
59+
months {
60+
name = "OCTOBER"
61+
}
62+
5163
weeks_of_month = ["2"]
5264
}
5365

@@ -112,7 +124,19 @@ resource "oci_database_db_system" "test_db_system_2" {
112124
lead_time_in_weeks = 2
113125

114126
months {
115-
name = "APRIL"
127+
name = "JANUARY"
128+
}
129+
130+
months {
131+
name = "APRIL"
132+
}
133+
134+
months {
135+
name = "JULY"
136+
}
137+
138+
months {
139+
name = "OCTOBER"
116140
}
117141

118142
weeks_of_month = ["2"]

examples/identity/availability_domains.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ output "ads" {
1616

1717
data "oci_identity_availability_domain" "ad" {
1818
compartment_id = var.tenancy_ocid
19-
ad_number = 2
19+
ad_number = 1
2020
}
2121

2222
output "ad" {

examples/identity/group.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ output "groups" {
3535
*/
3636

3737
variable "dynamic_group_defined_tags_value" {
38-
default = "value"
38+
default = "test_value"
3939
}
4040

4141
variable "dynamic_group_freeform_tags" {
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
2+
// Licensed under the Mozilla Public License v2.0
3+
4+
variable "test_tag_namespace_name" {
5+
default = "Oracle-Standard"
6+
}
7+
8+
resource "oci_identity_import_standard_tags_management" "test_import_standard_tags_management" {
9+
#Required
10+
compartment_id = var.compartment_id
11+
standard_tag_namespace_name = var.test_tag_namespace_name
12+
}
13+
14+

examples/identity/networksources.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
22
// Licensed under the Mozilla Public License v2.0
33
variable "compartment_id" {
4+
45
}
56

67
variable "network_source_defined_tags_value" {
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
2+
// Licensed under the Mozilla Public License v2.0
3+
4+
5+
data "oci_identity_tag_standard_tag_namespace_template" "test_tag_standard_tag_namespace_template" {
6+
#Required
7+
compartment_id = var.compartment_id
8+
standard_tag_namespace_name = var.test_tag_namespace_name
9+
}
10+
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
2+
// Licensed under the Mozilla Public License v2.0
3+
4+
5+
data "oci_identity_tag_standard_tag_namespace_templates" "test_tag_standard_tag_namespace_template" {
6+
#Required
7+
compartment_id = var.compartment_id
8+
}
9+

examples/identity/user.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,15 @@
77

88
resource "oci_identity_user" "user1" {
99
name = "tf-example-user"
10+
1011
description = "user created by terraform"
1112
compartment_id = var.tenancy_ocid
1213
}
1314

1415
// Use the "user2" to have non-default values of capabilities without corresponding authentication resources being actually created
1516
resource "oci_identity_user" "user2" {
1617
name = "tf-example-user2"
18+
1719
description = "user2 created by terraform"
1820
compartment_id = var.tenancy_ocid
1921
}

0 commit comments

Comments
 (0)