Skip to content

Commit

Permalink
Merge pull request #1900 from oracle/release_gh
Browse files Browse the repository at this point in the history
Releasing version 5.3.0
  • Loading branch information
NagendraNigade authored Jun 28, 2023
2 parents 1fa19ff + 140bc6c commit aeaf0f8
Show file tree
Hide file tree
Showing 498 changed files with 21,095 additions and 2,256 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## 5.3.0 (June 28, 2023)

### Added
- Support for DBCS | Support A1 (Ampere) for VM DB
- OKV integration with ExaCC to manage TDE Keys
- Support for International Expansion of Paid Listings - Phase 2
- Support for ECPU Support for License Manager
- Support for Sql Endpoints in Data Flow
- Support for OCI Container Registry (OCIR): Tagging
- Support for Automatic Primary Key Handling and Delayed Replication in MDS Channels
- Support for DBM: SQL Plan Management Support
### Bug Fix
- Fixed network source resource discovery issue
- Fix APM Synthetic service vantage points schema
- Fixed target_resource_details of oci_bastion_session having unexpected diff after creation

## 5.2.1 (June 21, 2023)
### Fixed
- Reverted Identity compartment level discovery changes
Expand Down
17 changes: 13 additions & 4 deletions examples/apm/apm_synthetics/monitors/monitor.tf
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,12 @@ variable "monitor_maintenance_window_schedule_time_started" {
default = "2024-12-18T22:47:12.654Z"
}

variable "vantage_points" {
default = ["OraclePublic-us-ashburn-1"]
variable "monitor_vantage_points_name" {
default = "OraclePublic-us-ashburn-1"
}

variable "monitor_vantage_points_param_display_name" {
default = "US East (Ashburn)"
}

provider "oci" {
Expand All @@ -166,7 +170,12 @@ resource "oci_apm_synthetics_monitor" "test_monitor" {
display_name = var.monitor_display_name
monitor_type = var.monitor_monitor_type
repeat_interval_in_seconds = var.monitor_repeat_interval_in_seconds
vantage_points = var.vantage_points
vantage_points {
#Required
name = var.monitor_vantage_points_name
#Optional
display_name = var.monitor_vantage_points_param_display_name
}

#Optional
configuration {
Expand Down Expand Up @@ -264,7 +273,7 @@ variable "script_parameters_param_name" {
}

variable "script_parameters_param_value" {
default = "myTest1"
default = ""
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,29 +16,53 @@ provider "oci" {
region = var.region
}

variable "container_image_signature_compartment_id_in_subtree" {}
variable "container_image_signature_compartment_id_in_subtree" {
default = false
}

variable "container_image_signature_defined_tags_value" {
default = "value"
}

variable "container_image_signature_freeform_tags" {
default = { "Department" = "Finance" }
}

// specify the container image to upload to
variable "container_image_id" {}
variable "container_image_id" {
default = "container_image_id"
}

// specify the management endpoint for the key
variable "crypto_endpoint" {}
// specify the crypto endpoint for the key
variable "crypto_endpoint" {
default = "https://xxxxx-crypto.kms.us-phoenix-1.oraclecloud.com"
}

// specify the kms key to sign the message
variable "kms_rsa_key_id" {}
variable "kms_rsa_key_id" {
default = "kms_rsa_key_id"
}

// specify the kms key version to sign the message
variable "kms_rsa_key_version_id" {}
variable "kms_rsa_key_version_id" {
default = "kms_rsa_key_version_id"
}

// the algorithm to sign with the key
variable "kms_signing_algorithm" {}
variable "kms_signing_algorithm" {
default = "SHA_224_RSA_PKCS_PSS"
}

// user inputted description to include in the signature
variable "description" {}
variable "description" {
default = "test"
}

// user defined a json string to include in the signature (eg. use escape character for the key/value string)
// ex. "{\\\"buildNumber\\\":\\\"123\\\"}"
variable "metadata" {}
variable "metadata" {
default = ""
}

data "oci_artifacts_container_image" "test_container_image" {
image_id = var.container_image_id
Expand Down Expand Up @@ -80,6 +104,10 @@ resource "oci_artifacts_container_image_signature" "test_container_image_signatu
message = base64encode(local.message)
signature = oci_kms_sign.test_sign.signature
signing_algorithm = var.kms_signing_algorithm

#Optional
defined_tags = { "example-tag-namespace-all.example-tag" = var.container_image_signature_defined_tags_value }
freeform_tags = var.container_image_signature_freeform_tags
}

data "oci_artifacts_container_image_signatures" "test_container_image_signatures" {
Expand Down
16 changes: 13 additions & 3 deletions examples/artifacts/ContainerRepository/container_repository.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ variable "container_repository_compartment_id_in_subtree" {
default = false
}

variable "container_repository_defined_tags_value" {
default = "value"
}

variable "container_repository_freeform_tags" {
default = { "Department" = "Finance" }
}

variable "container_repository_is_immutable" {
default = false
}
Expand Down Expand Up @@ -45,7 +53,7 @@ provider "oci" {
// repository displayName needs to be unique within a tenant, so generate random string here to avoid collision
resource "random_string" "container_repository_display_name" {
length = 5
number = false
numeric = false
special = false
upper = false
}
Expand All @@ -56,8 +64,10 @@ resource "oci_artifacts_container_repository" "test_container_repository" {
display_name = random_string.container_repository_display_name.result

#Optional
is_immutable = var.container_repository_is_immutable
is_public = var.container_repository_is_public
defined_tags = { "example-tag-namespace-all.example-tag" = var.container_repository_defined_tags_value }
freeform_tags = var.container_repository_freeform_tags
is_immutable = var.container_repository_is_immutable
is_public = var.container_repository_is_public
readme {
#Required
content = var.container_repository_readme_content
Expand Down
Loading

0 comments on commit aeaf0f8

Please sign in to comment.