Skip to content
This repository has been archived by the owner on May 6, 2020. It is now read-only.

busbud/terraform-provider-cloudamqp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 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}"
}

Releases

No releases published

Packages

No packages published

Languages

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