https://github.com/jaxxstorm/terraform-cloud-custodian
A terraform module to install the prerequisites for cloud-custodian
https://github.com/jaxxstorm/terraform-cloud-custodian
Last synced: 4 months ago
JSON representation
A terraform module to install the prerequisites for cloud-custodian
- Host: GitHub
- URL: https://github.com/jaxxstorm/terraform-cloud-custodian
- Owner: jaxxstorm
- Created: 2018-09-03T21:38:48.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T11:43:04.000Z (over 1 year ago)
- Last Synced: 2025-01-12T12:31:17.699Z (6 months ago)
- Language: HCL
- Homepage:
- Size: 9.77 KB
- Stars: 10
- Watchers: 3
- Forks: 6
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# terraform-cloud-custodian
## WARNING
This module is in heavy development and is not yet ready for production use
# Example
```
# the module itself
module "custodian" {
source = "/Users/Lee/github/terraform-cloud-custodian"
s3_bucket_name = "lbriggs-cloud-custodian-output"
name = "custodian"
namespace = "lbriggs"
stage = "dev"
region = "us-west-2"
}# additional policy attachments for your custodian functions
resource "aws_iam_role_policy_attachment" "ec2" {
role = "${module.custodian.role_arn}"
policy_arn = "arn:aws:iam::aws:policy/AmazonEC2FullAccess"
}
```