Skip to content
Merged
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
1 change: 0 additions & 1 deletion examples/basic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ module "postgresql_db" {
resource_tags = var.resource_tags
access_tags = var.access_tags
member_host_flavor = var.member_host_flavor
member_memory_mb = var.member_memory_mb
}

# On destroy, we are seeing that even though the replica has been returned as
Expand Down
6 changes: 0 additions & 6 deletions examples/basic/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,3 @@ variable "member_host_flavor" {
description = "Allocated host flavor per member. For more information, see https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs/resources/database#host_flavor"
default = null
}

variable "member_memory_mb" {
type = number
description = "Allocated memory per-member. See the following doc for supported values: https://cloud.ibm.com/docs/databases-for-postgresql?topic=databases-for-postgresql-resources-scaling"
default = 4096
}
1 change: 0 additions & 1 deletion tests/other_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ func TestRunBasicExampleWithFlavorMultitenant(t *testing.T) {
ResourceGroup: resourceGroup,
TerraformVars: map[string]interface{}{
"member_host_flavor": "multitenant",
"member_memory_mb": 8192, // Requires a minimum of 8192 megabytes with multitenant flavor
},
CloudInfoService: sharedInfoSvc,
})
Expand Down