diff --git a/tf-modulised/openstack/provider.tf b/tf-modulised/openstack/provider.tf new file mode 100644 index 0000000..004f90b --- /dev/null +++ b/tf-modulised/openstack/provider.tf @@ -0,0 +1,9 @@ +# Configure the OpenStack Provider +provider "openstack" { + user_name = "admin" + tenant_name = "demo" + password = "your-password" + auth_url = "URL-to-keystone" + region = "RegionOne" +} +