code-dumps/tf-modulised/openstack/provider.tf

10 lines
202 B
Terraform
Raw Normal View History

2020-07-10 17:22:12 +08:00
# Configure the OpenStack Provider
provider "openstack" {
user_name = "admin"
tenant_name = "demo"
password = "your-password"
auth_url = "URL-to-keystone"
region = "RegionOne"
}