Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions scripts/ecpupatch/ecpu.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
--- main.tf 2025-09-02 17:41:14
+++ main.tf.new 2025-09-02 17:59:54
@@ -103,7 +103,8 @@
resource "oci_database_autonomous_database" "autonomous_database" {
admin_password = local.bootstrap_password
compartment_id = var.compartment_id
- cpu_core_count = "1"
+ compute_model = "ECPU"
+ compute_count = "4.0"
data_storage_size_in_tbs = "1"
db_name = var.db_name
db_workload = var.db_workload == "Autonomous Transaction Processing" ? "OLTP" : "DW"
17 changes: 0 additions & 17 deletions scripts/ecpupatch/patch-DB-model.sh

This file was deleted.

17 changes: 0 additions & 17 deletions scripts/ecpupatch/readme.txt

This file was deleted.

11 changes: 11 additions & 0 deletions scripts/patchtfversion/update-tf-version.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
--- a/versions.tf
+++ b/versions.tf
@@ -3,7 +3,7 @@
## Licensed under the Universal Permissive License v1.0 as shown at https://oss.oracle.com/licenses/upl.

terraform {
- required_version = "~> 1.0"
+ required_version = "~> 1.5"
required_providers {
local = {
source = "hashicorp/local"