Skip to content

Commit fcba116

Browse files
Merge pull request #2360 from oracle/release_gh
Releasing Version 6.34.0
2 parents f543693 + 19dd974 commit fcba116

File tree

246 files changed

+4644
-941
lines changed

Some content is hidden

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

246 files changed

+4644
-941
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions

examples/README.md

Lines changed: 2 additions & 0 deletions

examples/functions/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ resource "oci_functions_function" "test_function" {
103103
trace_config {
104104
is_enabled = var.function_trace_config.is_enabled
105105
}
106+
is_dry_run = var.dry_run
106107

107108
provisioned_concurrency_config {
108109
strategy = "CONSTANT"

examples/functions/variables.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@ variable "function_image" {
6969
variable "function_image_digest" {
7070
}
7171

72+
variable "dry_run" {
73+
default = "false"
74+
}
75+
7276
variable "function_trace_config" {
7377
type = object({
7478
is_enabled = bool

examples/goldengate/Pipeline/main.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ variable "region" {}
88
variable "source_connection_id" { }
99
variable "target_connection_id" { }
1010
variable "display_name" {
11-
default = "Pipeline display Name"
11+
default = "Data fabric pipeline display name"
1212
}
1313
variable "license_model" {
1414
default = "LICENSE_INCLUDED"
@@ -26,6 +26,7 @@ provider "oci" {
2626
}
2727

2828
resource "oci_golden_gate_pipeline" "test_pipeline" {
29+
# Required
2930
compartment_id = var.compartment_id
3031
display_name = var.display_name
3132
license_model = var.license_model
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
variable "secondary_idcs_account_name_url" {
2+
default = "secondary_idcs_account_name_url"
3+
}
4+
5+
variable "secondary_private_endpoint_id" {
6+
default = "secondary_private_endpoint_id"
7+
}
8+
9+
variable "replica_region" {
10+
default = "us-dcc-phoenix-4"
11+
}
12+
13+
variable vault_id {
14+
default = "vault_id"
15+
}
16+
17+
variable virtual_vault_id {
18+
default = "virtual_vault_id"
19+
}
20+
21+
variable "vault_type" {
22+
default = "EXTERNAL"
23+
}
24+
25+
resource "oci_kms_vault_replication" "test_replication" {
26+
replica_region = var.replica_region
27+
vault_id = var.virtual_vault_id
28+
}
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
variable "tenancy_ocid" {
2+
}
3+
4+
variable "user_ocid" {
5+
}
6+
7+
variable "fingerprint" {
8+
}
9+
10+
variable "private_key_path" {
11+
}
12+
13+
variable "region" {
14+
}
15+
16+
variable "compartment_ocid" {
17+
}
18+
19+
variable "ext_vault" {
20+
}
21+
22+
variable "ext_key_version_id" {
23+
}
24+
25+
26+
provider "oci" {
27+
version = "6.27.0"
28+
tenancy_ocid = var.tenancy_ocid
29+
user_ocid = var.user_ocid
30+
fingerprint = var.fingerprint
31+
private_key_path = var.private_key_path
32+
region = var.region
33+
}
Lines changed: 6 additions & 0 deletions
Lines changed: 4 additions & 0 deletions
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
// Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved.
2+
// Licensed under the Mozilla Public License v2.0
3+
4+
# Create Reserved IPv6 with vnic
5+
resource "oci_core_ipv6" "test_reserve_ipv6" {
6+
vnic_id = data.oci_core_vnic_attachments.instance_vnics.vnic_attachments[0]["vnic_id"]
7+
subnet_id = oci_core_subnet.example_subnet.id
8+
display_name = "reserved_ipv6"
9+
route_table_id = oci_core_vcn.example_vcn.default_route_table_id
10+
lifetime = "RESERVED"
11+
}
12+
13+
# Create Reserved IPv6 with only subnet
14+
resource "oci_core_ipv6" "test_reserve_ipv6_available" {
15+
subnet_id = oci_core_subnet.example_subnet.id
16+
display_name = "available_reserved_ipv6"
17+
route_table_id = oci_core_vcn.example_vcn.default_route_table_id
18+
lifetime = "RESERVED"
19+
}
20+
21+
# List IPv6s
22+
data "oci_core_ipv6s" "reserve_ipv6_datasource" {
23+
depends_on = [oci_core_ipv6.test_reserve_ipv6,oci_core_ipv6.test_reserve_ipv6_available]
24+
subnet_id = oci_core_subnet.example_subnet.id
25+
}
26+
27+
output "reserve_ipv6s" {
28+
value = [data.oci_core_ipv6s.reserve_ipv6_datasource.ipv6s]
29+
}

0 commit comments

Comments
 (0)