github.com/atsaki/terraform@v0.4.3-0.20150919165407-25bba5967654/website/source/docs/providers/atlas/index.html.markdown (about) 1 --- 2 layout: "atlas" 3 page_title: "Provider: Atlas" 4 sidebar_current: "docs-atlas-index" 5 description: |- 6 The Atlas provider is used to interact with configuration, 7 artifacts, and metadata managed by the Atlas service. 8 --- 9 10 # Atlas Provider 11 12 The Atlas provider is used to interact with resources, configuration, 13 artifacts, and metadata managed by [Atlas](https://atlas.hashicorp.com). 14 The provider needs to be configured with the proper credentials before 15 it can be used. 16 17 Use the navigation to the left to read about the available resources. 18 19 ## Example Usage 20 21 ``` 22 # Configure the Atlas provider 23 provider "atlas" { 24 token = "${var.atlas_token}" 25 } 26 27 # Fetch an artifact configuration 28 resource "atlas_artifact" "web" { 29 ... 30 } 31 ``` 32 33 ## Argument Reference 34 35 The following arguments are supported: 36 37 * `address` - (Optional) Atlas server endpoint. Defaults to public Atlas. 38 This is only required when using an on-premise deployment of Atlas. This can 39 also be specified with the `ATLAS_ADDRESS` shell environment variable. 40 41 * `token` - (Required) API token. This can also be specified with the 42 `ATLAS_TOKEN` shell environment variable. 43