mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-07-19 21:09:27 +00:00
Historically, we only support one Terraform configuration, through the "openstack-tf" infraclass. With these changes, we support multiple Terraform configurations, including (at this point) "openstack" and "oci" (Oracle Cloud). Existing infra files that use INFRACLASS=openstack-tf should be changed as follows: INFRACLASS=terraform TERRAFORM=openstack
13 lines
397 B
Plaintext
13 lines
397 B
Plaintext
INFRACLASS=terraform
|
|
TERRAFORM=openstack
|
|
|
|
# If you are using OpenStack, copy this file (e.g. to "openstack" or "enix")
|
|
# and customize the variables below.
|
|
export TF_VAR_user="jpetazzo"
|
|
export TF_VAR_tenant="training"
|
|
export TF_VAR_domain="Default"
|
|
export TF_VAR_password="..."
|
|
export TF_VAR_auth_url="https://api.r1.nxs.enix.io/v3"
|
|
export TF_VAR_flavor="GP1.S"
|
|
export TF_VAR_image="Ubuntu 18.04"
|