scottslowe-learning-tools/terraform/tf-example/provider.tf
Kyle Mestery e28946d2b3 terraform: Use Neutron floating IPs
Use openstack_networking_floatingip_v2 instead of
openstack_compute_floatingip_v2 to make use of
Neutron floating IPs in the Terraform example.

Also update the .gitignore to ignore the terraform
DB which is generated.

Signed-off-by: Kyle Mestery <mestery@mestery.com>
2016-01-03 10:24:09 -06:00

6 lines
136 B
HCL

provider "openstack" {
user_name = "demo"
tenant_name = "demo"
password = "password"
auth_url = "http://192.168.33.101:5000/v2.0"
}