generated from hashicorp/terraform-provider-scaffolding-framework
-
-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Bug report
- I confirm this is a bug with Supabase, not with my own application.
- I confirm I have searched the Docs, GitHub Discussions, and Discord.
Describe the bug
Upon a simple resource creation an old compute name is used (pico) while (nano) is used everywhere else in the product.
To Reproduce
resource "supabase_project" "test" {
organization_id = "your-org"
name = "test-db"
database_password = "1234"
region = "eu-central-1"
instance_size = "nano"
lifecycle {
ignore_changes = [database_password]
}
}
Expected behavior
Expected to be able to create resource with compute size nano
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working