0
0
llucycodes42
The code creates a GoogleSQLDatabase instance called "example-name" in the us-central region. The instance has a tier of D0.
Shortcut: tf_google_sql_database_instance
resource "google_sql_database_instance" "${MyResource}" {
name = "example-name"
description = "example-description"
region = "us-central
settings { tier = "D0" }
}