Skip to content

Commit 99c3933

Browse files
authored
Merge pull request #1894 from oracle/release_gh
Releasing OCI Terraform Provider v5.2.0
2 parents cc07929 + 423e759 commit 99c3933

File tree

431 files changed

+6947
-475
lines changed

Some content is hidden

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

431 files changed

+6947
-475
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions

examples/dataflow/main.tf

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,18 @@ variable "invoke_run_display_name" {
7575
variable "statement_code" {
7676
}
7777

78+
79+
resource "oci_dataflow_pool" "test_pool" {
80+
compartment_id = var.compartment_id
81+
description = "description"
82+
display_name = "pool_name"
83+
freeform_tags = {
84+
"Department" = "Finance"
85+
}
86+
configurations = [{shape: "VM.Standard2.1", shapeConfig: {ocpus: 1, memoryInGBs: 15}, min: 0, max: 1}]
87+
schedules = [{dayOfWeek: "SUNDAY", startTime: 3}]
88+
}
89+
7890
resource "oci_dataflow_application" "tf_application" {
7991
#Required
8092
compartment_id = var.compartment_id

examples/functions/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ resource "oci_functions_application" "test_application" {
7676
domain_id = var.application_trace_config.domain_id
7777
is_enabled = var.application_trace_config.is_enabled
7878
}
79+
shape = var.application_shape
7980
}
8081

8182
data "oci_functions_applications" "test_applications" {

examples/functions/variables.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,4 +99,8 @@ variable "pbf_listing_version_id" {
9999
}
100100

101101
variable "pbf_trigger_name" {
102+
}
103+
104+
variable "application_shape" {
105+
default = "GENERIC_X86"
102106
}

examples/zips/adm.zip

0 Bytes
Binary file not shown.

examples/zips/aiAnomalyDetection.zip

0 Bytes
Binary file not shown.

examples/zips/aiDocument.zip

496 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.

examples/zips/analytics.zip

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)