
Title
Create new category
Edit page index title
Edit category
Edit link
Authenticate OpenStack Provider Using Terraform
Problem
For those unfamiliar with Platform9 Managed OpenStack's Clarity UI, it can be difficult to locate the necessary credentials with which to properly authenticate as an infrastructure provider using the "Infrastructure as a Code" tool, Terraform. This article will provide the steps necessary to properly authenticate using data available in the Clarity UI.
Environment
- Platform9 Managed OpenStack - All Versions
Procedure
- Create a new file and terraform directory under your users' home directory.
xxxxxxxxxx$ vi ~/terraform/provider.tf- Press 'I' to enter "Insert" mode and paste the below template into the file.
# Configure the OpenStack Providerprovider "openstack" { user_name = "admin" tenant_name = "admin" password = "pwd" auth_url = "http://myauthurl:5000/v2.0" region = "RegionOne"}When logged into the Platform9 UI, locate your username (1), tenant_name (2) and region (3) in the top right corner of the window.
Navigate to the "Access & Security" tab (1) in the left pane, click "API Access" (2) at the top of the window and copy the Keystone (Identity) endpoint (3) into your provider.tf template as the auth_url.

tf-keystone.png
- Insert the password you've used to login to the Platform9 UI and save the file. Press the 'ESC' key to exit "Insert" mode and type ':wq' (without quotation), then press 'Enter' to save the file.
- Ensure your present working directory contains the completed provider.tf file and issue a
terraform initcommand to complete authentication.
$ cd ~/terraform$ lsprovider.tf$ terraform initInitializing provider plugins...- Checking for available provider plugins on https://releases.hashicorp.com...- Downloading plugin for provider "openstack" (1.14.0)... The following providers do not have any version constraints in configuration, so the latest version was installed. To prevent automatic upgrades to new major versions that may contain breaking changes, it is recommended to add version = "..." constraints to the corresponding provider blocks in configuration, with the constraint strings suggested below. * provider.openstack: version = "~> 1.14" Terraform has been successfully initialized! You may now begin working with Terraform. Try running "terraform plan" to seeany changes that are required for your infrastructure. All Terraform commands should now work. If you ever set or change modules or backend configuration for Terraform, rerun this command to reinitialize your working directory. If you forget, other commands will detect it and remind you to do so if necessary.If the command exits with a return similar to the one above, you have successfully authenticated with Terraform.