Skip to content

Commit

Permalink
Merge pull request #126 from rpechayr/patch-1
Browse files Browse the repository at this point in the history
Update terraform doc to match current version
  • Loading branch information
Soulou authored Feb 8, 2023
2 parents 6c52cbe + 38ea018 commit af499c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ resource "scalingo_app" "my-app" {
}
# Provision a highly available PostgreSQL cluster and attach it to the application
resource "scalingo_app" "my-db" {
resource "scalingo_addon" "my-db" {
provider_id = "postgresql"
plan = "postgresql-business-1024"
app = "${scalingo_app.my-app.id}"
}
# Configure domain 'example.com' to be targeting your application
resource "scalingo_domain" "my-domain" {
name = "example.com"
common_name = "example.com"
app = "${scalingo_app.my-app.id}"
}
```
Expand Down

0 comments on commit af499c7

Please sign in to comment.