Skip to content

morde08/terraform-provider

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Terraform provider for CloudAMQP

Setup your CloudAMQP cluster from Terraform

Install

git clone https://github.com/cloudamqp/terraform-provider.git
cd terraform-provider
make depupdate
make init

Now the provider is installed in the terraform plugins folder and ready to be used.

Example

provider "cloudamqp" {}

resource "cloudamqp_instance" "rmq_bunny" {
  name   = "terraform-provider-test"
  plan   = "bunny"
  region = "amazon-web-services::us-east-1"
  vpc_subnet = "10.201.0.0/24"
}

output "rmq_url" {
  value = "${cloudamqp_instance.rmq_bunny.url}"
}

About

Terraform Provider for CloudAMQP

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Go 80.5%
  • Makefile 13.7%
  • HCL 5.8%