generated from cloudposse/terraform-example-module
-
Notifications
You must be signed in to change notification settings - Fork 3
/
README.yaml
89 lines (71 loc) · 3.06 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
---
#
# This is the canonical configuration for the `README.md`
# Run `make readme` to rebuild the `README.md`
#
# Name of this project
name: terraform-rsa-encrypt
# Logo for this project
#logo: docs/logo.png
# License of this project
license: "APACHE2"
# Copyrights
copyrights:
- name: "Zero A.E., LLC"
url: "https://zero-ae.com"
year: "2020"
# Canonical GitHub repo
github_repo: zeroae/terraform-rsa-encrypt
# Badges to display
badges:
- name: "Latest Release"
image: "https://img.shields.io/github/release/zeroae/terraform-shell-rsa-encrypt.svg"
url: "https://github.com/zeroae/terraform-shell-rsa-encrypt/releases/latest"
# List any related terraform modules that this module may be used with or that this module depends on.
related:
- name: "terraform-resource-shell"
description: "Run (exec) a command in shell and capture the output (stdout, stderr) and status code (exit status)"
url: "https://github.com/matti/terraform-shell-resource"
# List any resources helpful for someone to get started. For example, link to the hashicorp documentation or AWS documentation.
references:
- name: "Terraform rsaencrypt hashicorp/terraform#16647"
description: "Terraform did not include the rsaencrypt function when rsadecrypt was merged"
url: "https://github.com/hashicorp/terraform/pull/16647"
- name: "Terraform Standard Module Structure"
description: "HashiCorp's standard module structure is a file and directory layout we recommend for reusable modules distributed in separate repositories."
url: "https://www.terraform.io/docs/modules/index.html#standard-module-structure"
- name: "Terraform Module Requirements"
description: "HashiCorp's guidance on all the requirements for publishing a module. Meeting the requirements for publishing a module is extremely easy."
url: "https://www.terraform.io/docs/registry/modules/publish.html#requirements"
# Short description of this project
description: |-
The `terraform-shell-rsa-encrypt` module can be used for encrypting content using an RSA public key.
It is the missing part of the built-in "rsadecrypt".
# Introduction to the project
#introduction: |-
# When `rsadecrypt` was implemented into terraform, the `encrypt` command was [left out](https://github.com/hashicorp/terraform/pull/16647)
# How to use this module. Should be an easy example to copy and paste.
usage: |-
Here's how to invoke this example module in your projects
```hcl
module "encrypt" {
source = "zeroae/rsa-encrypt/shell"
public_key_pem = file("path/to/public-key.pem")
content_base64 = filebase64("path/to/sensitive.txt")
}
```
# Example usage
examples: |-
Here is an example of using this module:
- [`examples/complete`](https://github.com/zeroae/terraform-shell-rsa-encrypt/) - complete example of using this module
# How to get started quickly
#quickstart: |-
# Here's how to get started...
# Other files to include in this README from the project folder
include:
- "docs/targets.md"
- "docs/terraform.md"
# Contributors to this project
contributors:
- name: "Patrick Sodré"
github: "sodre"