Skip to content

Commit

Permalink
refactor: modify plan/version
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewLemmond committed Dec 5, 2024
1 parent dec6425 commit de0020c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ resource "ibm_db2" "db2" {
name = var.db2_instance_name
resource_group_id = var.resource_group_id
location = "us-south"
plan = "free"
plan = "performance-preprod"
service = "dashdb-for-transactions"
high_availability = var.enable_high_availability ? "yes" : "no"
service_endpoints = var.service_endpoints

parameters = {
"oracle_compatibility" : var.enable_oracle_compatibility ? "yes" : "no",
# "version" : "12",
"version" : "12",
"node_type" : var.node_type
}

Expand Down

0 comments on commit de0020c

Please sign in to comment.