https://github.com/geyang/csail-openstack-terraform
https://github.com/geyang/csail-openstack-terraform
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/geyang/csail-openstack-terraform
- Owner: geyang
- License: mit
- Created: 2022-04-15T12:59:13.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-15T13:09:46.000Z (over 3 years ago)
- Last Synced: 2025-02-27T18:11:12.321Z (10 months ago)
- Language: HCL
- Size: 116 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CSAIL Openstack Terraform
*forked from [terraform-openstack-examples](https://github.com/diodonfrost/terraform-openstack-examples)*
# Authentication
```terraform
provider "openstack" {
user_name = "my-litle-user"
tenant_name = "my-little-tenant"
password = "secret"
auth_url = "http://your-cloud-prodivder.com"
}
```