terraform/website/source/docs/providers/openstack/index.html.markdown

55 lines
1.2 KiB
Markdown
Raw Normal View History

2015-01-08 01:09:25 +01:00
---
layout: "openstack"
page_title: "Provider: OpenStack"
sidebar_current: "docs-openstack-index"
description: |-
The OpenStack provider is used to interact with the many resources supported by OpenStack. The provider needs to be configured with the proper credentials before it can be used.
---
# OpenStack Provider
The OpenStack provider is used to interact with the
many resources supported by OpenStack. 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 OpenStack Provider
provider "openstack" {
user_name = "admin"
2015-01-08 01:09:25 +01:00
tenant_name = "admin"
password = "pwd"
auth_url = "http://myauthurl:5000/v2.0"
}
# Create a web server
resource "openstack_compute_instance_v2" "test-server" {
2015-01-08 01:09:25 +01:00
...
}
```
## Configuration Reference
The following arguments are supported:
* `auth_url` - (Required)
2015-01-08 01:09:25 +01:00
* `user_name` - (Optional; Required for Identity V2)
2015-01-08 01:09:25 +01:00
* `user_id` - (Optional)
2015-01-08 01:09:25 +01:00
* `password` - (Optional; Required if not using `api_key`)
* `api_key` - (Optional; Required if not using `password`)
* `domain_id` - (Optional)
* `domain_name` - (Optional)
* `tenant_id` - (Optional)
2015-01-08 01:09:25 +01:00
* `tenant_name` - (Optional)