Skip to content

Commit e95fac9

Browse files
authored
Merge pull request #2069 from oracle/release_gh
Releasing version 5.34.0
2 parents cb0cf07 + ff53209 commit e95fac9

File tree

227 files changed

+8832
-110
lines changed

Some content is hidden

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

227 files changed

+8832
-110
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions

examples/apm/apm_traces/trace/trace.tf

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,17 @@ variable "trace_trace_key" {
1212
default = "traceKey"
1313
}
1414

15+
variable "trace_time_trace_started_greater_than_or_equal_to" {
16+
default = "YYYY-MM-DDTHH:MM:SS.SSSZ"
17+
}
18+
19+
variable "trace_time_trace_started_less_than" {
20+
default = "YYYY-MM-DDTHH:MM:SS.SSSZ"
21+
}
1522

23+
variable "trace_trace_namespace" {
24+
default = "TRACES"
25+
}
1626

1727
provider "oci" {
1828
tenancy_ocid = var.tenancy_ocid
@@ -26,5 +36,11 @@ data "oci_apm_traces_trace" "test_trace" {
2636
#Required
2737
apm_domain_id = var.apm_domain_id
2838
trace_key = var.trace_trace_key
39+
40+
#Optional
41+
trace_namespace = var.trace_trace_namespace
42+
time_trace_started_greater_than_or_equal_to = var.trace_time_trace_started_greater_than_or_equal_to
43+
time_trace_started_less_than = var.trace_time_trace_started_less_than
44+
2945
}
3046

examples/apm/apm_traces/trace_aggregated_snapshot_data/trace_aggregated_snapshot_data.tf

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,21 @@ variable "trace_aggregated_snapshot_data_trace_key" {
1212
default = "traceKey"
1313
}
1414

15+
variable "trace_aggregated_snapshot_data_server_name" {
16+
default = "serverName"
17+
}
18+
19+
variable "trace_aggregated_snapshot_data_service_name" {
20+
default = "serviceName"
21+
}
22+
23+
variable "trace_aggregated_snapshot_data_span_key" {
24+
default = "spanKey"
25+
}
26+
27+
variable "trace_aggregated_snapshot_data_span_name" {
28+
default = "spanName"
29+
}
1530

1631
provider "oci" {
1732
tenancy_ocid = var.tenancy_ocid
@@ -25,5 +40,11 @@ data "oci_apm_traces_trace_aggregated_snapshot_data" "test_trace_aggregated_snap
2540
#Required
2641
apm_domain_id = var.apm_domain_id
2742
trace_key = var.trace_aggregated_snapshot_data_trace_key
43+
44+
#Optional
45+
server_name = var.trace_aggregated_snapshot_data_server_name
46+
service_name = var.trace_aggregated_snapshot_data_service_name
47+
span_key = var.trace_aggregated_snapshot_data_span_key
48+
span_name = var.trace_aggregated_snapshot_data_span_name
2849
}
2950

examples/integration/main.tf

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,16 @@ variable certificate_secret_id {
3838
variable domain_id {
3939
default = ""
4040
}
41+
42+
variable subnet_id {
43+
default = ""
44+
}
45+
46+
variable nsg_id {
47+
default = ""
48+
}
49+
50+
4151
provider "oci" {
4252
tenancy_ocid = var.tenancy_ocid
4353
user_ocid = var.user_ocid
@@ -49,10 +59,9 @@ provider "oci" {
4959
resource "oci_integration_integration_instance" "test_integration_instance" {
5060
#Required
5161
compartment_id = var.compartment_id
52-
display_name = "instance4643"
5362
integration_instance_type = "STANDARDX"
5463
shape = "DEVELOPMENT"
55-
# shape = "PRODUCTION"
64+
display_name = "displayName"
5665
is_byol = "false"
5766
message_packs = "10"
5867
domain_id = var.domain_id
@@ -72,27 +81,14 @@ resource "oci_integration_integration_instance" "test_integration_instance" {
7281
# is_file_server_enabled = true
7382
# is_visual_builder_enabled = true
7483
# state = "ACTIVE"
75-
76-
# For stand / enterprise type only
77-
# network_endpoint_details {
78-
# allowlisted_http_ips = ["10.0.0.0/28"]
79-
# allowlisted_http_vcns {
80-
# allowlisted_ips = ["0.0.0.0/0"]
81-
# id = "${var.allow_listed_http_vcn}"
82-
# }
83-
# is_integration_vcn_allowlisted = "false"
84-
# network_endpoint_type = "PUBLIC"
85-
# }
86-
8784
}
8885

8986
data "oci_integration_integration_instances" "test_integration_instances" {
9087
#Required
9188
compartment_id = var.compartment_id
9289

93-
#Optional
94-
# display_name = "displayName"
95-
# state = "Active"
90+
display_name = "displayName"
91+
state = "Active"
9692
}
9793

9894
data "oci_integration_integration_instance" "test_integration_instance" {
@@ -111,3 +107,9 @@ resource "oci_integration_integration_instance" "test_integration_instance_idcs"
111107
message_packs = "10"
112108
idcs_at = var.integration_instance_idcs_access_token
113109
}
110+
111+
resource "oci_integration_private_endpoint_outbound_connection" "integration_private_endpoint" {
112+
integration_instance_id = oci_integration_integration_instance.test_integration_instance.id
113+
nsg_ids = [var.nsg_id]
114+
subnet_id = var.subnet_id
115+
}

examples/zips/adm.zip

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

examples/zips/aiDocument.zip

0 Bytes
Binary file not shown.

examples/zips/aiLanguage.zip

0 Bytes
Binary file not shown.

examples/zips/aiVision.zip

0 Bytes
Binary file not shown.

examples/zips/always_free.zip

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)