2.1 KiB
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| openstack | Provider: OpenStack | docs-openstack-index | 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"
tenant_name = "admin"
password = "pwd"
auth_url = "http://myauthurl:5000/v2.0"
}
# Create a web server
resource "openstack_compute_instance_v2" "test-server" {
...
}
Configuration Reference
The following arguments are supported:
-
auth_url- (Required) If omitted, theOS_AUTH_URLenvironment variable is used. -
user_name- (Optional; Required for Identity V2) If omitted, theOS_USERNAMEenvironment variable is used. -
user_id- (Optional) -
password- (Optional; Required if not usingapi_key) If omitted, theOS_PASSWORDenvironment variable is used. -
api_key- (Optional; Required if not usingpassword) -
domain_id- (Optional) -
domain_name- (Optional) -
tenant_id- (Optional) -
tenant_name- (Optional) If omitted, theOS_TENANT_NAMEenvironment variable is used. -
insecure- (Optional) Explicitly allow the provider to perform "insecure" SSL requests. If omitted, default value isfalse
Testing
In order to run the Acceptance Tests for development, the following environment variables must also be set:
-
OS_REGION_NAME- The region in which to create the server instance. -
OS_IMAGE_IDorOS_IMAGE_NAME- a UUID or name of an existing image in Glance. -
OS_FLAVOR_IDorOS_FLAVOR_NAME- an ID or name of an existing flavor. -
OS_POOL_NAME- The name of a Floating IP pool. -
OS_NETWORK_ID- The UUID of a network in your test environment.