Terraform module -
It's 100% Open Source and licensed under the APACHE2.
This is a very basic example.
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
username = "NotAdmin"
password = random_password.password.result
}
No requirements.
Name | Version |
---|---|
aws | n/a |
No modules.
Name | Type |
---|---|
aws_mq_broker.broker | resource |
aws_mq_configuration.broker | resource |
aws_security_group.broker | resource |
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(any) |
n/a | yes |
ingress | n/a | list(any) |
n/a | yes |
kms_key_id | n/a | any |
n/a | yes |
maintenance_window_start_time | Describe the Maintenance window block | map(any) |
{ |
no |
mq_broker | MQ broker details | map(any) |
n/a | yes |
my_config | MQ Config | map(any) |
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(any) |
n/a | yes |
username | n/a | string |
"ExampleUser" |
no |
vpc_id | The VPC id | string |
n/a | yes |
Name | Description |
---|---|
broker | The Broker details |
configuration | The broker configuration |
mq_password | MQ password |
mq_username | MQ Username |
This is the policy required to build this project:
The Terraform resource required is:
resource "aws_iam_policy" "terraform_pike" {
name_prefix = "terraform_pike"
path = "/"
description = "Pike Autogenerated policy from IAC"
policy = jsonencode({
"Version": "2012-10-17",
"Statement": [
{
"Sid": "VisualEditor0",
"Effect": "Allow",
"Action": [
"ec2:AuthorizeSecurityGroupEgress",
"ec2:AuthorizeSecurityGroupIngress",
"ec2:CreateNetworkInterface",
"ec2:CreateNetworkInterfacePermission",
"ec2:CreateSecurityGroup",
"ec2:CreateTags",
"ec2:DeleteNetworkInterface",
"ec2:DeleteNetworkInterfacePermission",
"ec2:DeleteSecurityGroup",
"ec2:DeleteTags",
"ec2:DescribeAccountAttributes",
"ec2:DescribeInternetGateways",
"ec2:DescribeNetworkInterfaces",
"ec2:DescribeSecurityGroups",
"ec2:DescribeSubnets",
"ec2:DescribeVpcs",
"ec2:DetachNetworkInterface",
"ec2:RevokeSecurityGroupEgress",
"ec2:RevokeSecurityGroupIngress"
],
"Resource": [
"*"
]
},
{
"Sid": "VisualEditor1",
"Effect": "Allow",
"Action": [
"kms:CreateGrant"
],
"Resource": [
"*"
]
},
{
"Sid": "VisualEditor2",
"Effect": "Allow",
"Action": [
"mq:CreateBroker",
"mq:CreateConfiguration",
"mq:CreateTags",
"mq:CreateUser",
"mq:DeleteBroker",
"mq:DeleteTags",
"mq:DeleteUser",
"mq:DescribeBroker",
"mq:DescribeConfiguration",
"mq:DescribeConfigurationRevision",
"mq:DescribeUser",
"mq:RebootBroker",
"mq:UpdateBroker",
"mq:UpdateConfiguration",
"mq:UpdateUser"
],
"Resource": [
"*"
]
}
]
})
}
Check out these related projects.
- terraform-aws-s3 - S3 buckets
Got a question?
File a GitHub issue.
Please use the issue tracker to report any bugs or file feature requests.
Copyright © 2019-2023 James Woolfenden
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.