Skip to content

Commit 38c434c

Browse files
authored
Releasing version 4.121.0
Releasing version 4.121.0
2 parents 62e96aa + 9a76d1c commit 38c434c

File tree

155 files changed

+1652
-878
lines changed

Some content is hidden

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

155 files changed

+1652
-878
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions

examples/database/db_systems/db_exacs/resources.tf

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,12 @@ resource "oci_database_db_home" "test_db_home_vm_cluster" {
5454
db_workload = "OLTP"
5555
pdb_name = "pdbName"
5656
db_backup_config {
57-
auto_backup_enabled = false
57+
auto_backup_enabled = "true"
58+
auto_backup_window = "SLOT_TWO"
59+
auto_full_backup_day = "SUNDAY"
60+
auto_full_backup_window = "SLOT_ONE"
61+
recovery_window_in_days = 10
62+
run_immediate_full_backup = false
5863
}
5964
freeform_tags = {
6065
"Department" = "Finance"

examples/fusionapps/FusionEnvironmentServiceAttachment/fusion_environment_service_attachment.tf

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,21 @@ variable "fusion_environment_service_attachment_display_name" {
1313
}
1414

1515
variable "fusion_environment_service_attachment_service_instance_type" {
16-
default = "DIGITAL_ASSISTANT"
16+
default = "ANALYTICS_WAREHOUSE"
1717
}
1818

1919
variable "fusion_environment_service_attachment_state" {
2020
default = "ACTIVE"
2121
}
2222

23+
variable "service_instance_id" {
24+
default = "test-service-id"
25+
}
26+
27+
variable "fusion_environment_id" {
28+
default = "test-fa-pod-id"
29+
}
30+
2331
provider "oci" {
2432
tenancy_ocid = var.tenancy_ocid
2533
user_ocid = var.user_ocid
@@ -30,10 +38,23 @@ provider "oci" {
3038

3139
data "oci_fusion_apps_fusion_environment_service_attachments" "test_fusion_environment_service_attachments" {
3240
#Required
33-
fusion_environment_id = oci_fusion_apps_fusion_environment.test_fusion_environment.id
41+
fusion_environment_id = var.fusion_environment_id
3442

3543
#Optional
3644
display_name = var.fusion_environment_service_attachment_display_name
3745
service_instance_type = var.fusion_environment_service_attachment_service_instance_type
3846
state = var.fusion_environment_service_attachment_state
3947
}
48+
49+
resource "oci_fusion_apps_fusion_environment_service_attachment" "test_fusion_environment_service_attachment" {
50+
#Required
51+
fusion_environment_id = var.fusion_environment_id
52+
service_instance_id = var.service_instance_id
53+
service_instance_type = var.fusion_environment_service_attachment_service_instance_type
54+
}
55+
56+
data "oci_fusion_apps_fusion_environment_service_attachment" "test_fusion_environment_service_attachment" {
57+
#Required
58+
fusion_environment_id = var.fusion_environment_id
59+
service_attachment_id = oci_fusion_apps_fusion_environment_service_attachment.test_fusion_environment_service_attachment.id
60+
}

examples/zips/adm.zip

0 Bytes
Binary file not shown.

examples/zips/aiAnomalyDetection.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.

examples/zips/analytics.zip

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

examples/zips/api_gateway.zip

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)