https://github.com/wazo-platform/wazo-terraform
Install Wazo with Terraform
https://github.com/wazo-platform/wazo-terraform
aws install openstack terraform wazo
Last synced: 5 months ago
JSON representation
Install Wazo with Terraform
- Host: GitHub
- URL: https://github.com/wazo-platform/wazo-terraform
- Owner: wazo-platform
- Created: 2017-07-10T15:07:29.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2025-11-18T09:31:54.000Z (7 months ago)
- Last Synced: 2025-11-18T11:23:21.144Z (7 months ago)
- Topics: aws, install, openstack, terraform, wazo
- Language: HCL
- Homepage:
- Size: 85.9 KB
- Stars: 5
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Install Wazo with Terraform
This repo install and configure Wazo as a HA service on AWS (Amazon Cloud) or Openstack. The login for the
web interface is **wazo** by default.
Requirements
------------
- Terraform >= 0.6.16
- AWS account
- Openstack account
Launch
------
Install terraform (https://www.terraform.io/downloads.html)
Init the terraform infrastructure.
terraform init github.com/wazo-platform/wazo-terraform wazo-terraform
cd wazo-terraform
Create a terraform.tfvars with your value:
aws
---
access_key = ""
secret_key = ""
subnet_id = ""
vpc_id = ""
key_name = "" # The key Name you would like to use to connect to the EC2
private_key = "" # Path of your amazon private key to connect to the EC2
openstack
---------
user_name = ""
password = ""
tenant_name = ""
auth_url = "http://keystone:5000/v3"
key_pair = ""
key_file = ""
network = ""
Launch this command:
terraform plan -var-file=terraform.tfvars
terraform apply
At this end to getting informations:
terraform show
To remove instance:
terraform plan -destroy
terraform destroy
Please remove private_ips.txt if you relaunch your instances.
Have fun!