diff --git a/website/Gemfile.lock b/website/Gemfile.lock index a55579e6db..d6cbc175aa 100644 --- a/website/Gemfile.lock +++ b/website/Gemfile.lock @@ -1,6 +1,6 @@ GIT remote: https://github.com/hashicorp/middleman-hashicorp - revision: 783fe9517dd02badb85e5ddfeda4d8e35bbd05a8 + revision: 0e21734c64afcf0c6d35b40b26840254227c1949 specs: middleman-hashicorp (0.1.0) bootstrap-sass (~> 3.3) @@ -20,23 +20,23 @@ GIT GEM remote: https://rubygems.org/ specs: - activesupport (4.1.9) + activesupport (4.1.10) i18n (~> 0.6, >= 0.6.9) json (~> 1.7, >= 1.7.7) minitest (~> 5.1) thread_safe (~> 0.1) tzinfo (~> 1.1) - autoprefixer-rails (5.1.7) + autoprefixer-rails (5.1.8.1) execjs json - bootstrap-sass (3.3.3) + bootstrap-sass (3.3.4.1) autoprefixer-rails (>= 5.0.0.1) sass (>= 3.2.19) builder (3.2.2) celluloid (0.16.0) timers (~> 4.0.0) chunky_png (1.3.4) - coffee-script (2.3.0) + coffee-script (2.4.1) coffee-script-source execjs coffee-script-source (1.9.1) @@ -53,14 +53,14 @@ GEM sass (>= 3.3.0, < 3.5) compass-import-once (1.0.5) sass (>= 3.2, < 3.5) - daemons (1.1.9) + daemons (1.2.2) em-websocket (0.5.1) eventmachine (>= 0.12.9) http_parser.rb (~> 0.6.0) erubis (2.7.0) eventmachine (1.0.7) - execjs (2.4.0) - ffi (1.9.6) + execjs (2.5.2) + ffi (1.9.8) haml (4.0.6) tilt hike (1.2.3) @@ -75,8 +75,8 @@ GEM less (2.6.0) commonjs (~> 0.2.7) libv8 (3.16.14.7) - listen (2.8.5) - celluloid (>= 0.15.2) + listen (2.10.0) + celluloid (~> 0.16.0) rb-fsevent (>= 0.9.3) rb-inotify (>= 0.9) middleman (3.3.10) @@ -137,7 +137,7 @@ GEM rb-fsevent (0.9.4) rb-inotify (0.9.5) ffi (>= 0.5.0) - redcarpet (3.2.2) + redcarpet (3.2.3) ref (1.0.5) rouge (1.8.0) sass (3.4.13) @@ -151,7 +151,7 @@ GEM sprockets-sass (1.3.1) sprockets (~> 2.0) tilt (~> 1.1) - therubyracer (0.12.1) + therubyracer (0.12.2) libv8 (~> 3.16.14.0) ref thin (1.6.3) @@ -159,7 +159,7 @@ GEM eventmachine (~> 1.0) rack (~> 1.0) thor (0.19.1) - thread_safe (0.3.4) + thread_safe (0.3.5) tilt (1.4.1) timers (4.0.1) hitimes diff --git a/website/config.rb b/website/config.rb index f47b6b9bd5..059ecd37cc 100644 --- a/website/config.rb +++ b/website/config.rb @@ -9,4 +9,5 @@ activate :hashicorp do |h| h.bintray_repo = 'mitchellh/vault' h.bintray_user = 'mitchellh' h.bintray_key = ENV['BINTRAY_API_KEY'] + h.minify_javascript = false end diff --git a/website/source/docs/providers/github/index.html.markdown b/website/source/docs/providers/github/index.html.markdown deleted file mode 100644 index 20a307cb6e..0000000000 --- a/website/source/docs/providers/github/index.html.markdown +++ /dev/null @@ -1,36 +0,0 @@ ---- -layout: "mailgun" -page_title: "Provider: Mailgun" -sidebar_current: "docs-mailgun-index" -description: |- - The Mailgun provider is used to interact with the resources supported by Mailgun. The provider needs to be configured with the proper credentials before it can be used. ---- - -# Provider - -The Mailgun provider is used to interact with the -resources supported by Mailgun. The provider needs to be configured -with the proper credentials before it can be used. - -Use the navigation to the left to read about the available resources. - -## Example Usage - -``` -# Configure the Mailgun provider -provider "mailgun" { - api_key = "${var.mailgun_api_key}" -} - -# Create a new domain -resource "mailgun_domain" "default" { - ... -} -``` - -## Argument Reference - -The following arguments are supported: - -* `api_key` - (Required) Mailgun API key - diff --git a/website/source/docs/providers/index.html.markdown b/website/source/docs/providers/index.html.markdown deleted file mode 100644 index bdefaa6661..0000000000 --- a/website/source/docs/providers/index.html.markdown +++ /dev/null @@ -1,20 +0,0 @@ ---- -layout: "docs" -page_title: "Providers" -sidebar_current: "docs-providers" -description: |- - Vault is used to create, manage, and manipulate infrastructure resources. Examples of resources include physical machines, VMs, network switches, containers, etc. Almost any infrastructure noun can be represented as a resource in Vault. ---- - -# Providers - -Vault is used to create, manage, and manipulate infrastructure resources. -Examples of resources include physical machines, VMs, network switches, containers, -etc. Almost any infrastructure noun can be represented as a resource in Vault. - -Vault is agnostic to the underlying platforms by supporting providers. A provider -is responsible for understanding API interactions and exposing resources. Providers -generally are an IaaS (e.g. AWS, DigitalOcean, GCE), PaaS (e.g. Heroku, CloudFoundry), -or SaaS services (e.g. Atlas, DNSimple, CloudFlare). - -Use the navigation to the left to read about the available providers.