Skip to content

Commit 757d2dd

Browse files
authored
Merge pull request #1656 from oracle/release_gh
Releasing version v4.90.0
2 parents d3c9b31 + d9299a2 commit 757d2dd

File tree

246 files changed

+6763
-1506
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

+6763
-1506
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions

examples/devops/build_service/build.tf

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,10 +252,24 @@ resource "oci_devops_trigger" "test_trigger" {
252252

253253
#Optional
254254
events = ["PUSH"]
255+
exclude {
256+
257+
#Optional
258+
file_filter {
259+
260+
#Optional
261+
file_paths = ["**/*.md"]
262+
}
263+
}
255264
include {
256265

257266
#Optional
258267
base_ref = "baseRef"
268+
file_filter {
269+
270+
#Optional
271+
file_paths = ["**/*.txt"]
272+
}
259273
head_ref = "headRef"
260274
}
261275
}
@@ -282,10 +296,24 @@ resource "oci_devops_trigger" "test_gitlab_trigger" {
282296

283297
#Optional
284298
events = ["PUSH"]
299+
exclude {
300+
301+
#Optional
302+
file_filter {
303+
304+
#Optional
305+
file_paths = ["**/*.md"]
306+
}
307+
}
285308
include {
286309

287310
#Optional
288311
base_ref = "baseRef"
312+
file_filter {
313+
314+
#Optional
315+
file_paths = ["**/*.txt"]
316+
}
289317
head_ref = "headRef"
290318
}
291319
}
@@ -312,10 +340,24 @@ resource "oci_devops_trigger" "test_code_repo_trigger" {
312340

313341
#Optional
314342
events = ["PUSH"]
343+
exclude {
344+
345+
#Optional
346+
file_filter {
347+
348+
#Optional
349+
file_paths = ["**/*.md"]
350+
}
351+
}
315352
include {
316353

317354
#Optional
318355
base_ref = "baseRef"
356+
file_filter {
357+
358+
#Optional
359+
file_paths = ["**/*.txt"]
360+
}
319361
head_ref = "headRef"
320362
}
321363
}

examples/mysql/main.tf

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,29 @@ resource "oci_mysql_mysql_db_system" "test_mysql_backup_db_system" {
5555
data_storage_size_in_gb = "50"
5656
}
5757

58+
resource "oci_mysql_mysql_configuration" "test_mysql_configuration" {
59+
#Required
60+
compartment_id = var.compartment_ocid
61+
shape_name = "MySQL.VM.Standard.E3.1.8GB"
62+
63+
#Optional
64+
description = "test configuration created by terraform"
65+
display_name = "terraform test configuration"
66+
parent_configuration_id = data.oci_mysql_mysql_configurations.test_mysql_configurations.configurations[0].id
67+
variables {
68+
69+
#Optional
70+
max_connections = "501"
71+
}
72+
}
73+
5874
resource "oci_mysql_mysql_db_system" "test_mysql_db_system" {
5975
#Required
6076
admin_password = "BEstrO0ng_#11"
6177
admin_username = "adminUser"
6278
availability_domain = data.oci_identity_availability_domains.test_availability_domains.availability_domains[0].name
6379
compartment_id = var.compartment_ocid
64-
configuration_id = data.oci_mysql_mysql_configurations.test_mysql_configurations.configurations[0].id
80+
configuration_id = oci_mysql_mysql_configuration.test_mysql_configuration.id
6581
shape_name = "MySQL.VM.Standard.E3.1.8GB"
6682
subnet_id = oci_core_subnet.test_subnet.id
6783

examples/optimizer/main.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ provider "oci" {
3131
data "oci_optimizer_categories" "test_categories" {
3232
compartment_id = "${var.tenancy_ocid}"
3333
compartment_id_in_subtree = "true"
34+
include_organization = true
3435
filter {
3536
name = "name"
3637
values = ["cost-management-name"]
@@ -46,6 +47,7 @@ data "oci_optimizer_recommendations" "test_recommendations" {
4647
category_id = "${lookup(data.oci_optimizer_categories.test_categories.category_collection.0.items[0], "id")}"
4748
compartment_id = "${var.tenancy_ocid}"
4849
compartment_id_in_subtree = "true"
50+
include_organization = true
4951
filter {
5052
name = "name"
5153
values = ["cost-management-compute-host-underutilized-name"]
@@ -66,6 +68,7 @@ data "oci_optimizer_resource_actions" "test_resource_actions" {
6668
compartment_id = "${var.tenancy_ocid}"
6769
compartment_id_in_subtree = "true"
6870
recommendation_id = "${oci_optimizer_recommendation.test_recommendation.recommendation_id}"
71+
include_organization = true
6972
filter {
7073
name = "status"
7174
values = ["PENDING", "DISMISSED", "POSTPONED"]

examples/zips/adm.zip

0 Bytes
Binary file not shown.
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.

0 commit comments

Comments
 (0)