Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ This module automatically generates comprehensive documentation about your deplo

```bash
# View documentation in terminal
terraform output documentation
terraform output -json meshplatform | jq -r '.documentation'

# Save documentation to markdown file
terraform output -raw documentation > meshplatform-docs.md
terraform output -json meshplatform | jq -r '.documentation' > meshplatform-docs.md
```

The documentation includes:
Expand Down Expand Up @@ -76,12 +76,7 @@ The documentation includes:
```sh
# The JSON output contains sensitive values that must not be transmitted anywhere other then the platform config screen in meshStack.
terraform output -json

# Get comprehensive documentation about your deployment
terraform output documentation

# Save documentation to file
terraform output -raw documentation > meshplatform-docs.md
terraform output -json meshplatform
```

### Using CLI
Expand Down
Loading