This repository has been archived by the owner on Jan 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathREADME.yaml
107 lines (94 loc) · 4.7 KB
/
README.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
---
#
# This is the canonical configuration for the `README.md`
# Run `make readme` to rebuild the `README.md`
#
# Name of this project
name: terraform-aws-codefresh-backing-services
# Logo for this project
#logo: docs/logo.png
# License of this project
license: "APACHE2"
# Canonical GitHub repo
github_repo: cloudposse/terraform-aws-codefresh-backing-services
# Badges to display
badges:
- name: "Build Status"
image: "https://travis-ci.org/cloudposse/terraform-aws-codefresh-backing-services.svg?branch=master"
url: "https://travis-ci.org/cloudposse/terraform-aws-codefresh-backing-services"
- name: "Latest Release"
image: "https://img.shields.io/github/release/cloudposse/terraform-aws-codefresh-backing-services.svg"
url: "https://github.com/cloudposse/terraform-aws-codefresh-backing-services/releases/latest"
- name: "Slack Community"
image: "https://slack.cloudposse.com/badge.svg"
url: "https://slack.cloudposse.com"
related:
- name: "terraform-aws-rds-cluster"
description: "Terraform module to provision an RDS Aurora cluster for MySQL or Postgres"
url: "https://github.com/cloudposse/terraform-aws-rds-cluster"
- name: "terraform-aws-route53-cluster-hostname"
description: "Terraform module to define a consistent AWS Route53 hostname"
url: "https://github.com/cloudposse/terraform-aws-route53-cluster-hostname"
- name: "terraform-aws-kops-metadata"
description: "Terraform module to lookup resources within a Kops cluster for easier integration with Terraform"
url: "https://github.com/cloudposse/terraform-aws-kops-metadata"
- name: "terraform-aws-elasticache-redis"
description: "Terraform module to provision an ElastiCache Redis Cluster"
url: "https://github.com/cloudposse/terraform-aws-elasticache-redis"
- name: "terraform-aws-rds-cluster-instance-group"
description: "Terraform module to provision an RDS cluster instance pool with a dedicated endpoint"
url: "https://github.com/cloudposse/terraform-aws-rds-cluster-instance-group"
- name: "terraform-aws-vpc"
description: "Terraform Module that defines a VPC with public/private subnets across multiple AZs with Internet Gateways"
url: "https://github.com/cloudposse/terraform-aws-vpc"
- name: "terraform-aws-dynamic-subnets"
description: "Terraform module for public and private subnets provisioning in existing VPC"
url: "https://github.com/cloudposse/terraform-aws-dynamic-subnets"
- name: "terraform-aws-documentdb-cluster"
description: "Terraform module to provision a DocumentDB cluster on AWS"
url: "https://github.com/cloudposse/terraform-aws-documentdb-cluster"
# Short description of this project
description: |-
Terraform module to provision [CodeFresh Enterprise](https://codefresh.io/enterprise/) backing services
introduction: |-
The module provisions the following resources:
- AWS [Aurora PostgreSQL](https://aws.amazon.com/rds/aurora/details/postgresql-details/) cluster
- AWS [ElastiCache Redis](https://aws.amazon.com/elasticache/redis/)
- AWS S3 bucket with associated user and permissions
- Amazon [DocumentDB](https://aws.amazon.com/documentdb/) cluster (with [MongoDB](https://www.mongodb.com/) compatibility)
**NOTE:** This module can be enabled or disabled in entirety using the `enabled` flag or you can override certain services e.g. `s3_enabled = "true"` which will enable only the S3 backing service resources given `enabled = "false"`
# How to use this project
usage: |-
```hcl
module "codefresh_backing_services" {
source = "git::https://github.com/cloudposse/terraform-aws-codefresh-backing-services.git?ref=master"
enabled = "true"
name = "${var.name}"
namespace = "${var.namespace}"
region = "${var.region}"
stage = "${var.stage}"
vpc_id = "${module.vpc.vpc_id}"
subnet_ids = ["${module.subnets.private_subnet_ids}"]
security_groups = ["${module.vpc.vpc_default_security_group_id}"]
}
```
For a complete example, see [examples/complete](examples/complete)
include:
- "docs/targets.md"
- "docs/terraform.md"
# Contributors to this project
contributors:
- name: "Erik Osterman"
homepage: "https://github.com/osterman"
avatar: "http://s.gravatar.com/avatar/88c480d4f73b813904e00a5695a454cb?s=144"
github: "osterman"
- name: "Andriy Knysh"
homepage: "https://github.com/aknysh/"
avatar: "https://avatars0.githubusercontent.com/u/7356997?v=4&u=ed9ce1c9151d552d985bdf5546772e14ef7ab617&s=144"
github: "aknysh"
- name: "Igor Rodionov"
homepage: "https://github.com/goruha/"
avatar: "http://s.gravatar.com/avatar/bc70834d32ed4517568a1feb0b9be7e2?s=144"
github: "goruha"
- name: "Josh Myers"
github: "joshmyers"