aboutsummaryrefslogtreecommitdiffstats
path: root/rabbitmq.yaml
diff options
context:
space:
mode:
authorClint Byrum <clint@fewbar.com>2013-09-13 09:07:00 -0700
committerClint Byrum <clint@fewbar.com>2013-09-13 09:08:54 -0700
commit6239598b100f61e85d9dcebb52f4e95e2d691493 (patch)
treec307a555d795a76540d179e8dbe67f45b60b3952 /rabbitmq.yaml
parent8c12b7162324e04ebd83aa2e57eb05502caae471 (diff)
Remove unmaintained individual service templates
First rule in the zombie apocalypse: Burn the dead. Change-Id: I952c630ca424d114feb643a6c34d182cad660f26
Diffstat (limited to 'rabbitmq.yaml')
-rw-r--r--rabbitmq.yaml39
1 files changed, 0 insertions, 39 deletions
diff --git a/rabbitmq.yaml b/rabbitmq.yaml
deleted file mode 100644
index 80e28eb6..00000000
--- a/rabbitmq.yaml
+++ /dev/null
@@ -1,39 +0,0 @@
-HeatTemplateFormatVersion: '2012-12-12'
-Description: 'Dedicated RabbitMQ Server'
-Parameters:
- KeyName:
- Description: Name of an existing EC2 KeyPair to enable SSH access to the instances
- Type: String
- Default: default
- InstanceType:
- Description: Use this flavor
- Type: String
- Default: bm.small
- RabbitMQImage:
- Type: String
-Resources:
- RabbitMQ:
- Type: AWS::EC2::Instance
- Metadata:
- OpenStack::Role: stateful
- OpenStack::ImageBuilder::Elements: [ rabbitmq-server ]
- rabbitmq:
- password_handle: {Ref: RabbitMQPasswordHandle}
- Properties:
- ImageId:
- {Ref: RabbitMQImage}
- InstanceType: {Ref: InstanceType}
- KeyName: {Ref: KeyName}
- RabbitMQPasswordHandle:
- Type: AWS::CloudFormation::WaitConditionHandle
- RabbitMQPassword:
- DependsOn: RabbitMQ
- Type: AWS::CloudFormation::WaitCondition
- Properties:
- Handle: {Ref: RabbitMQPasswordHandle}
- Timeout: 60
-Outputs:
- RabbitMQHost:
- Fn::GetAtt: [ RabbitMQ , PrivateIp ]
- RabbitMQPassword:
- Fn::GetAtt: [ RabbitMQPassword, Data ]