Skip to content

Commit 29d7f7c

Browse files
Merge pull request #1678 from oracle/release_gh
Releasing version 4.96.0
2 parents 24a07ad + c9885b1 commit 29d7f7c

File tree

264 files changed

+5039
-404
lines changed

Some content is hidden

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

264 files changed

+5039
-404
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions

examples/bastion/instance.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ resource "oci_core_instance" "test_instance" {
1212
availability_domain = data.oci_identity_availability_domain.bastion_ad.name
1313
compartment_id = var.compartment_ocid
1414
display_name = "TestInstance"
15-
shape = "VM.Standard1.1"
15+
shape = "VM.Standard2.1"
1616

1717
agent_config {
1818
are_all_plugins_disabled = false
@@ -27,7 +27,7 @@ resource "oci_core_instance" "test_instance" {
2727
create_vnic_details {
2828
subnet_id = oci_core_subnet.test_subnet.id
2929
display_name = "Primaryvnic"
30-
assign_public_ip = true
30+
assign_public_ip = false
3131
hostname_label = "testinstance"
3232
}
3333

examples/bastion/network.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ resource "oci_core_service_gateway" "test_bastion_service_gateway" {
1010
display_name = "sgw"
1111

1212
services {
13-
service_id = data.oci_core_services.test_bastion_services.services[1]["id"]
13+
service_id = data.oci_core_services.test_bastion_services.services[0]["id"]
1414
}
1515

1616
vcn_id = oci_core_vcn.test_bastion_vcn.id
@@ -21,7 +21,7 @@ resource "oci_core_default_route_table" "bastion_default_route_table" {
2121
display_name = "DefaultRouteTable"
2222

2323
route_rules {
24-
destination = lookup(data.oci_core_services.test_bastion_services.services[1], "cidr_block")
24+
destination = lookup(data.oci_core_services.test_bastion_services.services[0], "cidr_block")
2525
destination_type = "SERVICE_CIDR_BLOCK"
2626
network_entity_id = oci_core_service_gateway.test_bastion_service_gateway.id
2727
}

examples/bastion/session.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ variable "session_target_resource_details_target_resource_port" {
3636
resource "time_sleep" "wait_3_minutes_for_bastion_plugin" {
3737
depends_on = [oci_core_instance.test_instance]
3838

39-
create_duration = "3m"
39+
create_duration = "5m"
4040
}
4141

4242
resource "oci_bastion_session" "test_session_managed_ssh" {

examples/database/exadata_cc/exadata-infrastructure.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ resource "oci_database_exadata_infrastructure" "test_exadata_infrastructure" {
4242
infini_band_network_cidr = "10.31.8.0/21"
4343
netmask = "255.255.255.0"
4444
ntp_server = ["10.231.225.76"]
45-
shape = "ExadataCC.Quarter3.100"
45+
shape = "ExadataCC.X7"
4646
time_zone = "US/Pacific"
4747
activation_file = "activation.zip"
4848
storage_count = 3

examples/database/exadata_cc/vm_cluster.tf

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,13 @@ resource "oci_database_vm_cluster_network" "test_vm_cluster_network" {
3131
nodes {
3232
hostname = "myprefix2-cghdm1"
3333
ip = "192.169.19.18"
34+
db_server_id = data.oci_database_db_servers.test_db_servers.db_servers.0.id
3435
}
3536

3637
nodes {
3738
hostname = "myprefix2-cghdm2"
3839
ip = "192.169.19.20"
40+
db_server_id = data.oci_database_db_servers.test_db_servers.db_servers.1.id
3941
}
4042

4143
vlan_id = "11"
@@ -52,13 +54,15 @@ resource "oci_database_vm_cluster_network" "test_vm_cluster_network" {
5254
ip = "192.168.19.10"
5355
vip = "192.168.19.11"
5456
vip_hostname = "myprefix1-r64zc1-vip"
57+
db_server_id = data.oci_database_db_servers.test_db_servers.db_servers.0.id
5558
}
5659

5760
nodes {
5861
hostname = "myprefix1-r64zc2"
5962
ip = "192.168.19.14"
6063
vip = "192.168.19.15"
6164
vip_hostname = "myprefix1-r64zc2-vip"
65+
db_server_id = data.oci_database_db_servers.test_db_servers.db_servers.1.id
6266
}
6367

6468
vlan_id = "10"
@@ -74,6 +78,14 @@ resource "oci_database_vm_cluster_network" "test_vm_cluster_network" {
7478
}
7579

7680
validate_vm_cluster_network = true
81+
82+
action = "ADD_DBSERVER_NETWORK"
83+
84+
lifecycle {
85+
ignore_changes = [
86+
vm_networks,
87+
]
88+
}
7789
}
7890

7991
data "oci_database_gi_versions" "gi_version" {

examples/devops/deployment_service/wait_deploy_stage/wait_deploy_stage.tf

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ variable "region" {
2020
}
2121

2222
provider "oci" {
23-
#version = "4.62.0"
23+
#version = "4.92.0"
2424
region = var.region
2525
tenancy_ocid = var.tenancy_ocid
2626
user_ocid = var.user_ocid
@@ -58,8 +58,8 @@ resource "oci_devops_deploy_pipeline" "test_deploy_pipeline" {
5858
#Required
5959
project_id = oci_devops_project.test_project.id
6060

61-
description = "description"
62-
display_name = "displayName"
61+
description = "description"
62+
display_name = "displayName"
6363
}
6464

6565
resource "oci_devops_deploy_stage" "test_wait_deploy_stage" {
@@ -74,8 +74,8 @@ resource "oci_devops_deploy_stage" "test_wait_deploy_stage" {
7474
}
7575
deploy_stage_type = "WAIT"
7676

77-
description = "description"
78-
display_name = "displayName"
77+
description = "description"
78+
display_name = "displayName"
7979
wait_criteria {
8080
#Required
8181
wait_duration = "PT5S"
@@ -89,5 +89,6 @@ resource "oci_devops_deployment" "test_deployment" {
8989
deployment_type = "PIPELINE_DEPLOYMENT"
9090

9191
#Optional
92-
display_name = "test_deployment"
92+
display_name = "test_deployment"
93+
trigger_new_devops_deployment = false
9394
}

examples/storage/fss/data_sources.tf

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,3 +84,26 @@ data "oci_core_private_ips" "ip_mount_target1" {
8484
}
8585
}
8686

87+
# Gets a list of replications in a compartment and availability domain
88+
data "oci_file_storage_replications" "test_replications" {
89+
#Required
90+
availability_domain = data.oci_identity_availability_domain.ad.name
91+
compartment_id = var.compartment_ocid
92+
93+
#Optional
94+
#display_name = var.replication_display_name
95+
#file_system_id = oci_file_storage_file_system.test_file_system.id
96+
#id = var.replication_id
97+
#state = var.replication_state
98+
}
99+
100+
data "oci_file_storage_replication_targets" "test_replication_targets" {
101+
#Required
102+
availability_domain = data.oci_identity_availability_domain.ad.name
103+
compartment_id = var.compartment_ocid
104+
105+
#Optional
106+
#display_name = var.replication_target_display_name
107+
#id = var.replication_target_id
108+
#state = var.replication_target_state
109+
}

examples/zips/adm.zip

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

0 commit comments

Comments
 (0)