Skip to content

Commit ff35fe7

Browse files
Merge pull request #1728 from oracle/release_gh
Releasing version 4.102.0
2 parents 9c11b82 + fdb57e0 commit ff35fe7

File tree

507 files changed

+18885
-1557
lines changed

Some content is hidden

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

507 files changed

+18885
-1557
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## 4.102.0 (December 14, 2022)
2+
3+
### Added
4+
- Poll for workrequest and not workrequest and resource state due to infrequent get requests
5+
- Support for OMA Integration with FAaaS
6+
- Support for Launch Queue Service in OCI
7+
- Support for Allow users to cancel work requests in Service Mesh
8+
- Support for Database Management Support for PDB for Metrics and Perfhub
9+
- Support for UDX Standards : Support egress only services
10+
- Support for availability_configuration, maintenance_window_schedule
11+
- Support for DBCS | Support X9 (Intel) for VM DB
12+
### Bug Fix
13+
- Appmgmt Control Service federated tests fix
14+
- Unified agent config provider
15+
- Autonomous Database Test Fixed
16+
117
## 4.101.0 (December 07, 2022)
218

319
### Added

examples/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,8 @@ This directory contains Terraform configuration files showing how to create spec
177177
[![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/osub_usage.zip)
178178
- pic
179179
[![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/pic.zip)
180+
- queue
181+
[![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/queue.zip)
180182
- resourcemanager
181183
[![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/resourcemanager.zip)
182184
- serviceManagerProxy

examples/apm/apm_synthetics/monitors/monitor.tf

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,22 @@ variable "monitor_configuration_dns_configuration_override_dns_ip" {
132132
default = "12.1.21.1"
133133
}
134134

135+
variable "monitor_availability_configuration_max_allowed_failures_per_interval" {
136+
default = 0
137+
}
138+
139+
variable "monitor_availability_configuration_min_allowed_runs_per_interval" {
140+
default = 1
141+
}
142+
143+
variable "monitor_maintenance_window_schedule_time_ended" {
144+
default = "2023-02-12T22:47:12.613Z"
145+
}
146+
147+
variable "monitor_maintenance_window_schedule_time_started" {
148+
default = "2022-12-18T22:47:12.654Z"
149+
}
150+
135151
provider "oci" {
136152
tenancy_ocid = var.tenancy_ocid
137153
user_ocid = var.user_ocid
@@ -185,6 +201,15 @@ resource "oci_apm_synthetics_monitor" "test_monitor" {
185201
is_run_once = var.monitor_is_run_once
186202
is_run_now = var.monitor_is_run_now
187203
scheduling_policy = var.monitor_scheduling_policy
204+
#Optional
205+
availability_configuration {
206+
max_allowed_failures_per_interval = var.monitor_availability_configuration_max_allowed_failures_per_interval
207+
min_allowed_runs_per_interval = var.monitor_availability_configuration_min_allowed_runs_per_interval
208+
}
209+
maintenance_window_schedule {
210+
time_ended = var.monitor_maintenance_window_schedule_time_ended
211+
time_started = var.monitor_maintenance_window_schedule_time_started
212+
}
188213
}
189214

190215
data "oci_apm_synthetics_monitors" "test_monitors" {

examples/database/adb/autonomous_database.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ resource "oci_database_autonomous_database" "autonomous_database_from_backup_lat
150150
source = "BACKUP_FROM_TIMESTAMP"
151151
autonomous_database_id = oci_database_autonomous_database_backup.autonomous_database_backup.autonomous_database_id
152152
use_latest_available_backup_time_stamp = "true"
153+
whitelisted_ips = ["1.1.1.1/28"]
153154
}
154155

155156
data "oci_database_autonomous_databases" "autonomous_databases" {

examples/database/db_systems/db_exacs/resources.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ resource "oci_database_cloud_vm_cluster" "test_cloud_vm_cluster" {
2828
#Optional
2929
data_storage_size_in_tbs = var.cloud_vm_cluster_data_storage_size_in_tbs
3030
db_node_storage_size_in_gbs = var.cloud_vm_cluster_db_node_storage_size_in_gbs
31-
db_servers = var.cloud_vm_cluster_db_servers
31+
db_servers = [data.oci_database_db_servers.test_cloud_db_servers.db_servers.0.id, data.oci_database_db_servers.test_cloud_db_servers.db_servers.1.id]
3232
memory_size_in_gbs = var.cloud_vm_cluster_memory_size_in_gbs
3333
ocpu_count = var.cloud_vm_cluster_ocpu_count
3434
scan_listener_port_tcp = var.cloud_vm_cluster_scan_listener_port_tcp

examples/database/db_systems/db_exacs/variables.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,15 +125,15 @@ variable "time_zone" {
125125
}
126126

127127
variable "cloud_vm_cluster_memory_size_in_gbs" {
128-
default = 10
128+
default = 60
129129
}
130130

131131
variable "cloud_vm_cluster_data_storage_size_in_tbs" {
132-
default = 1.0
132+
default = 2.0
133133
}
134134

135135
variable "cloud_vm_cluster_db_node_storage_size_in_gbs" {
136-
default = 10
136+
default = 120
137137
}
138138

139139
variable "cloud_vm_cluster_db_servers" {

0 commit comments

Comments
 (0)