Use // for inline comments

This commit is contained in:
Bernerd Schaefer 2017-04-25 15:27:01 -07:00
parent 81e8db56f0
commit 26d6a562f1
1 changed files with 2 additions and 2 deletions

View File

@ -13,14 +13,14 @@ Provides a Heroku Space resource for running apps in isolated, highly available,
## Example Usage
```hcl
# Create a new Heroku space
// Create a new Heroku space
resource "heroku_space" "default" {
name = "test-space"
organization = "my-company"
region = "virginia"
}
# Create a new Heroku app in test-space
// Create a new Heroku app in test-space
resource "heroku_app" "default" {
name = "test-app"
space = "${heroku_space.default.name}"