diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2020-10-03 19:00:54 -0400 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2020-10-03 19:00:54 -0400 |
| commit | 2d8786894a769d2416f0369f493ddb29280a9c1e (patch) | |
| tree | 7e0a3d352f04d764f0cecf56677c04a752a070f5 | |
| parent | 97703aadcf2279bb068fbadab2f0b2f18b740bcf (diff) | |
| download | tf_letsencrypt_delegate-2d8786894a769d2416f0369f493ddb29280a9c1e.tar.gz tf_letsencrypt_delegate-2d8786894a769d2416f0369f493ddb29280a9c1e.tar.xz | |
Add some rough documentation
| -rw-r--r-- | readme.md | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..1d8befd --- /dev/null +++ b/readme.md @@ -0,0 +1,27 @@ +# Terraform module to create a route53 zone and IAM account to delegate letsencrypt + +Pretty rough, quick terraform for setting up route53, a new IAM account and +dumping the credentials to the output. + +The short version is you include this in your terraform as a module: + +``` +source = "git::https://git.riedstra.dev/mitch/tf_letsencrypt_delegate" +``` + +Or so. + +If you don't set `use_pgp = true` and `pgp_key` to the base64 encoded +contents of your public PGP key then it will write the credentials unencrypted +to the state file, which you may wish to avoid. + + +Adding: + +``` +output "info" { + value = module.letsencrypt.info +} +``` + +To your terraform may be useful to easily retrieve the access key. |
