Skip to content

8x8/terraform-aws-activemq

 
 

Repository files navigation

terraform-aws-activemq

Build Status Latest Release pre-commit checkov

Terraform module -


It's 100% Open Source and licensed under the APACHE2.

Usage

This is just a very basic example.

alt text

Include module.activemq.tf this repository as a module in your existing terraform code:

module "activemq" {
  source      = "JamesWoolfenden/activemq/aws"
  version     = "v0.1.1"
  common_tags = var.common_tags
  subnet_ids  = [element(tolist(data.aws_subnet_ids.private.ids), 0)]
  vpc_id      = element(tolist(data.aws_vpcs.main.ids), 0)
  mq_broker   = var.mq_broker
  my_config   = var.my_config
}

Requirements

No requirements.

Providers

Name Version
aws n/a
random n/a

Inputs

Name Description Type Default Required
audit To enable audit logging bool "false" no
common_tags This is to help you add tags to your cloud objects map n/a yes
ingress n/a list
[
"0.0.0.0/0"
]
no
logging To enable Logging to Cloudwatch bool true no
maintenance_window_start_time Describe the Maintenance window block map
{
"day_of_week": "MONDAY",
"time_of_day": "12:05",
"time_zone": "GMT"
}
no
mq_broker MQ broker details map n/a yes
mq_username n/a string "ExampleUser" no
my_config MQ Config map n/a yes
password n/a string n/a yes
security_group_name Broker Security group name string "Broker" no
subnet_ids Contains subnet ids list n/a yes
username n/a string n/a yes
vpc_id The VPC id string n/a yes

Outputs

Name Description
broker The Broker details
configuration The broker configuration
mq_password MQ password
mq_username MQ Username

Related Projects

Check out these related projects.

Help

Got a question?

File a GitHub issue.

Contributing

Bug Reports & Feature Requests

Please use the issue tracker to report any bugs or file feature requests.

Copyrights

Copyright © 2019-2020 James Woolfenden

License

License

See LICENSE for full details.

Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

https://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Contributors

James Woolfenden
James Woolfenden

About

A basic module to provision ActiveMQ

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HCL 73.7%
  • Python 12.8%
  • Makefile 9.4%
  • PowerShell 2.7%
  • Shell 1.4%