Use // for inline comments
This commit is contained in:
parent
81e8db56f0
commit
26d6a562f1
|
@ -13,14 +13,14 @@ Provides a Heroku Space resource for running apps in isolated, highly available,
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
```hcl
|
```hcl
|
||||||
# Create a new Heroku space
|
// Create a new Heroku space
|
||||||
resource "heroku_space" "default" {
|
resource "heroku_space" "default" {
|
||||||
name = "test-space"
|
name = "test-space"
|
||||||
organization = "my-company"
|
organization = "my-company"
|
||||||
region = "virginia"
|
region = "virginia"
|
||||||
}
|
}
|
||||||
|
|
||||||
# Create a new Heroku app in test-space
|
// Create a new Heroku app in test-space
|
||||||
resource "heroku_app" "default" {
|
resource "heroku_app" "default" {
|
||||||
name = "test-app"
|
name = "test-app"
|
||||||
space = "${heroku_space.default.name}"
|
space = "${heroku_space.default.name}"
|
||||||
|
|
Loading…
Reference in New Issue