This repository has been archived by the owner on Jan 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
README.yaml
84 lines (72 loc) · 3.58 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
---
#
# This is the canonical configuration for the `README.md`
# Run `make readme` to rebuild the `README.md`
#
# Name of this project
name: terraform-aws-kops-vault-backend
# Logo for this project
#logo: docs/logo.png
# License of this project
license: "APACHE2"
# Canonical GitHub repo
github_repo: cloudposse/terraform-aws-kops-vault-backend
# Badges to display
badges:
- name: "Build Status"
image: "https://travis-ci.org/cloudposse/terraform-aws-kops-vault-backend.svg?branch=master"
url: "https://travis-ci.org/cloudposse/terraform-aws-kops-vault-backend"
- name: "Latest Release"
image: "https://img.shields.io/github/release/cloudposse/terraform-aws-kops-vault-backend.svg"
url: "https://github.com/cloudposse/terraform-aws-kops-vault-backend/releases/latest"
- name: "Slack Community"
image: "https://slack.cloudposse.com/badge.svg"
url: "https://slack.cloudposse.com"
related:
- 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-kops-ecr"
description: "Terraform module to provision an ECR repository and grant users and kubernetes nodes access to it."
url: "https://github.com/cloudposse/terraform-aws-kops-ecr"
- name: "terraform-aws-kops-state-backend"
description: "Easily bootstrap kops clusters (DNS & S3 Bucket)"
url: "https://github.com/cloudposse/terraform-aws-kops-state-backend"
- name: "terraform-aws-kops-vpc-peering"
description: "Terraform module to create a peering connection between a backing services VPC and a VPC created by Kops"
url: "https://github.com/cloudposse/terraform-aws-kops-vpc-peering"
- name: "terraform-aws-kops-route53"
description: "Terraform module to lookup the IAM role associated with `kops` masters, and attach an IAM policy to the role with permissions to modify Route53 record sets"
url: "https://github.com/cloudposse/terraform-aws-kops-route53"
- name: "terraform-aws-kops-external-dns"
description: "Terraform module to provision an IAM role for external-dns running in a Kops cluster, and attach an IAM policy to the role with permissions to modify Route53 record sets"
url: "https://github.com/cloudposse/terraform-aws-kops-external-dns"
- name: "terraform-aws-kops-chart-repo"
description: "Terraform module to provision an S3 bucket for Helm chart repository, and an IAM role and policy with permissions for Kops nodes to access the bucket"
url: "https://github.com/cloudposse/terraform-aws-kops-chart-repo"
# Short description of this project
description: |-
Terraform module to provision an S3 bucket for [HashiCorp Vault](https://www.hashicorp.com/products/vault) secrets storage, and an IAM role and policy with permissions for Kops nodes to access the bucket.
The module uses [terraform-aws-kops-metadata](https://github.com/cloudposse/terraform-aws-kops-metadata) to lookup resources within a Kops cluster for easier integration with Terraform.
# How to use this project
usage: |-
```hcl
module "kops_vault_backend" {
source = "git::https://github.com/cloudposse/terraform-aws-kops-vault-backend.git?ref=master"
namespace = "cp"
stage = "prod"
name = "vault-backend"
cluster_name = "us-east-1.cloudposse.com"
nodes_name = "nodes"
tags = {
Cluster = "us-east-1.cloudposse.com"
}
}
```
include:
- "docs/targets.md"
- "docs/terraform.md"
# Contributors to this project
contributors:
- name: "Andriy Knysh"
github: "aknysh"