diff --git a/runatlantis.io/.vuepress/config.js b/runatlantis.io/.vuepress/config.js index b19c9ee5c9..e28af80c4f 100644 --- a/runatlantis.io/.vuepress/config.js +++ b/runatlantis.io/.vuepress/config.js @@ -35,13 +35,9 @@ module.exports = { {text: 'Home', link: '/'}, {text: 'Guide', link: '/guide/'}, {text: 'Docs', link: '/docs/'}, - {text: 'Streaming Logs', link: '/logs/'}, {text: 'Blog', link: 'https://medium.com/runatlantis'} ], sidebar: { - '/logs/': [ - '', - ], '/guide/': [ '', 'test-drive', @@ -99,6 +95,13 @@ module.exports = { 'security' ] }, + { + title: 'Real-time Terraform Logs', + collapsable: true, + children: [ + 'streaming-logs' + ] + }, { title: 'Troubleshooting', collapsable: true, diff --git a/runatlantis.io/logs/images/plan.png b/runatlantis.io/docs/images/plan.png similarity index 100% rename from runatlantis.io/logs/images/plan.png rename to runatlantis.io/docs/images/plan.png diff --git a/runatlantis.io/logs/images/plan_output.png b/runatlantis.io/docs/images/plan_output.png similarity index 100% rename from runatlantis.io/logs/images/plan_output.png rename to runatlantis.io/docs/images/plan_output.png diff --git a/runatlantis.io/logs/README.md b/runatlantis.io/docs/streaming-logs.md similarity index 97% rename from runatlantis.io/logs/README.md rename to runatlantis.io/docs/streaming-logs.md index 7c86168f3d..96529dfb4f 100644 --- a/runatlantis.io/logs/README.md +++ b/runatlantis.io/docs/streaming-logs.md @@ -1,6 +1,5 @@ # Real-time logs -## Getting Started Atlantis supports streaming terraform logs in real time by default. Currently, only two commands are supported * terraform init diff --git a/runatlantis.io/guide/testing-locally.md b/runatlantis.io/guide/testing-locally.md index ef30c3a712..e0aee3367b 100644 --- a/runatlantis.io/guide/testing-locally.md +++ b/runatlantis.io/guide/testing-locally.md @@ -311,7 +311,7 @@ If you'd like to `apply`, type a comment: `atlantis apply`. You can use the `-d` Atlantis at a specific plan. Otherwise it tries to apply the plan for the root directory. ## Real-time logs -The [real-time terraform output](/logs/README.md) for your command can be found by clicking into the status check for a given project in a PR which +The [real-time terraform output](/docs/streaming-logs.md) for your command can be found by clicking into the status check for a given project in a PR which links to the log-streaming UI. This is a terminal UI where you can view your commands executing in real-time. ## Next Steps