Difference between revisions of "Terraform resource: google sql database instance"

From wikieduonline
Jump to navigation Jump to search
Line 8: Line 8:
 
   database_version = "POSTGRES_15"
 
   database_version = "POSTGRES_15"
 
   region          = "us-central1"
 
   region          = "us-central1"
 
+
 
   settings {
 
   settings {
 
     # Second-generation instance tiers are based on the machine
 
     # Second-generation instance tiers are based on the machine
Line 16: Line 16:
 
  }
 
  }
  
 
 
== Related ==
 
== Related ==
 
* <code>[[gcloud sql instances create]]</code>
 
* <code>[[gcloud sql instances create]]</code>

Revision as of 12:13, 7 November 2024

google_sql_database_instance https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/sql_database_instance

Official example

resource "google_sql_database_instance" "main" {
 name             = "main-instance"
 database_version = "POSTGRES_15"
 region           = "us-central1"

 settings {
   # Second-generation instance tiers are based on the machine
   # type. See argument reference below.
   tier = "db-f1-micro"
 }
}

Related

See also

Advertising: