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

From wikieduonline
Jump to navigation Jump to search
Line 34: Line 34:
  
 
== See also ==
 
== See also ==
 +
* {{google sql database instance}}
 
* {{tf gcp}}
 
* {{tf gcp}}
  
 
[[Category:Terraform]]
 
[[Category:Terraform]]

Revision as of 12:15, 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"
 }
}


Relevants Outputs

# Output Connection Details

output "connection_name" {
  value = google_sql_database_instance.your-postgres-instance.connection_name
}

output "private_ip_address" {
  value = google_sql_database_instance.your-postgres-instance.private_ip_address
}

Related

See also

Advertising: