Skip to content

Commit aeaf0f8

Browse files
Merge pull request #1900 from oracle/release_gh
Releasing version 5.3.0
2 parents 1fa19ff + 140bc6c commit aeaf0f8

File tree

498 files changed

+21095
-2256
lines changed

Some content is hidden

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

498 files changed

+21095
-2256
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## 5.3.0 (June 28, 2023)
2+
3+
### Added
4+
- Support for DBCS | Support A1 (Ampere) for VM DB
5+
- OKV integration with ExaCC to manage TDE Keys
6+
- Support for International Expansion of Paid Listings - Phase 2
7+
- Support for ECPU Support for License Manager
8+
- Support for Sql Endpoints in Data Flow
9+
- Support for OCI Container Registry (OCIR): Tagging
10+
- Support for Automatic Primary Key Handling and Delayed Replication in MDS Channels
11+
- Support for DBM: SQL Plan Management Support
12+
### Bug Fix
13+
- Fixed network source resource discovery issue
14+
- Fix APM Synthetic service vantage points schema
15+
- Fixed target_resource_details of oci_bastion_session having unexpected diff after creation
16+
117
## 5.2.1 (June 21, 2023)
218
### Fixed
319
- Reverted Identity compartment level discovery changes

examples/apm/apm_synthetics/monitors/monitor.tf

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,12 @@ variable "monitor_maintenance_window_schedule_time_started" {
148148
default = "2024-12-18T22:47:12.654Z"
149149
}
150150

151-
variable "vantage_points" {
152-
default = ["OraclePublic-us-ashburn-1"]
151+
variable "monitor_vantage_points_name" {
152+
default = "OraclePublic-us-ashburn-1"
153+
}
154+
155+
variable "monitor_vantage_points_param_display_name" {
156+
default = "US East (Ashburn)"
153157
}
154158

155159
provider "oci" {
@@ -166,7 +170,12 @@ resource "oci_apm_synthetics_monitor" "test_monitor" {
166170
display_name = var.monitor_display_name
167171
monitor_type = var.monitor_monitor_type
168172
repeat_interval_in_seconds = var.monitor_repeat_interval_in_seconds
169-
vantage_points = var.vantage_points
173+
vantage_points {
174+
#Required
175+
name = var.monitor_vantage_points_name
176+
#Optional
177+
display_name = var.monitor_vantage_points_param_display_name
178+
}
170179

171180
#Optional
172181
configuration {
@@ -264,7 +273,7 @@ variable "script_parameters_param_name" {
264273
}
265274

266275
variable "script_parameters_param_value" {
267-
default = "myTest1"
276+
default = ""
268277
}
269278

270279

examples/artifacts/ContainerImageSignature/container_image_signature.tf

Lines changed: 37 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,29 +16,53 @@ provider "oci" {
1616
region = var.region
1717
}
1818

19-
variable "container_image_signature_compartment_id_in_subtree" {}
19+
variable "container_image_signature_compartment_id_in_subtree" {
20+
default = false
21+
}
22+
23+
variable "container_image_signature_defined_tags_value" {
24+
default = "value"
25+
}
26+
27+
variable "container_image_signature_freeform_tags" {
28+
default = { "Department" = "Finance" }
29+
}
2030

2131
// specify the container image to upload to
22-
variable "container_image_id" {}
32+
variable "container_image_id" {
33+
default = "container_image_id"
34+
}
2335

24-
// specify the management endpoint for the key
25-
variable "crypto_endpoint" {}
36+
// specify the crypto endpoint for the key
37+
variable "crypto_endpoint" {
38+
default = "https://xxxxx-crypto.kms.us-phoenix-1.oraclecloud.com"
39+
}
2640

2741
// specify the kms key to sign the message
28-
variable "kms_rsa_key_id" {}
42+
variable "kms_rsa_key_id" {
43+
default = "kms_rsa_key_id"
44+
}
2945

3046
// specify the kms key version to sign the message
31-
variable "kms_rsa_key_version_id" {}
47+
variable "kms_rsa_key_version_id" {
48+
default = "kms_rsa_key_version_id"
49+
}
3250

3351
// the algorithm to sign with the key
34-
variable "kms_signing_algorithm" {}
52+
variable "kms_signing_algorithm" {
53+
default = "SHA_224_RSA_PKCS_PSS"
54+
}
3555

3656
// user inputted description to include in the signature
37-
variable "description" {}
57+
variable "description" {
58+
default = "test"
59+
}
3860

3961
// user defined a json string to include in the signature (eg. use escape character for the key/value string)
4062
// ex. "{\\\"buildNumber\\\":\\\"123\\\"}"
41-
variable "metadata" {}
63+
variable "metadata" {
64+
default = ""
65+
}
4266

4367
data "oci_artifacts_container_image" "test_container_image" {
4468
image_id = var.container_image_id
@@ -80,6 +104,10 @@ resource "oci_artifacts_container_image_signature" "test_container_image_signatu
80104
message = base64encode(local.message)
81105
signature = oci_kms_sign.test_sign.signature
82106
signing_algorithm = var.kms_signing_algorithm
107+
108+
#Optional
109+
defined_tags = { "example-tag-namespace-all.example-tag" = var.container_image_signature_defined_tags_value }
110+
freeform_tags = var.container_image_signature_freeform_tags
83111
}
84112

85113
data "oci_artifacts_container_image_signatures" "test_container_image_signatures" {

examples/artifacts/ContainerRepository/container_repository.tf

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@ variable "container_repository_compartment_id_in_subtree" {
1212
default = false
1313
}
1414

15+
variable "container_repository_defined_tags_value" {
16+
default = "value"
17+
}
18+
19+
variable "container_repository_freeform_tags" {
20+
default = { "Department" = "Finance" }
21+
}
22+
1523
variable "container_repository_is_immutable" {
1624
default = false
1725
}
@@ -45,7 +53,7 @@ provider "oci" {
4553
// repository displayName needs to be unique within a tenant, so generate random string here to avoid collision
4654
resource "random_string" "container_repository_display_name" {
4755
length = 5
48-
number = false
56+
numeric = false
4957
special = false
5058
upper = false
5159
}
@@ -56,8 +64,10 @@ resource "oci_artifacts_container_repository" "test_container_repository" {
5664
display_name = random_string.container_repository_display_name.result
5765

5866
#Optional
59-
is_immutable = var.container_repository_is_immutable
60-
is_public = var.container_repository_is_public
67+
defined_tags = { "example-tag-namespace-all.example-tag" = var.container_repository_defined_tags_value }
68+
freeform_tags = var.container_repository_freeform_tags
69+
is_immutable = var.container_repository_is_immutable
70+
is_public = var.container_repository_is_public
6171
readme {
6272
#Required
6373
content = var.container_repository_readme_content

0 commit comments

Comments
 (0)