An open API service indexing awesome lists of open source software.

https://github.com/oxplot/terraform-credentials-gpg

Terraform Cloud GPG Credentials Helper
https://github.com/oxplot/terraform-credentials-gpg

Last synced: about 1 month ago
JSON representation

Terraform Cloud GPG Credentials Helper

Awesome Lists containing this project

README

          

Store your Terraform Cloud API token encrypted by GPG.

## Requirements

- GPG tools
- terraform CLI tool
- A key pair
- Terraform Cloud account with org and a workspace setup

## Getting started

Get a copy of the code:

```
cd ~
git clone https://github.com/oxplot/terraform-credentials-gpg
cd terraform-credentials-gpg
```

Copy or link to `terraform-credentials-gpg` in your terraform plugins
directory:

```
cp terraform-credentials-gpg ~/.terraform.d/plugins/
#ln -s ~/terraform-credentials-gpg/terraform-credentials-gpg ~/.terraform.d/plugins/
```

Configure your terraform to use the GPG credential helper:

```
cat <> ~/.terraformrc

credentials_helper "gpg" {
args = ["1122334455667788", "/home/bobby/.terraform-cloud-token"]
}

EOF
```

*`1122334455667788` is your key ID. Alternatively, you can use the email
address associated with that key.*

*`.terraform-cloud-token` will store gpg encrypted token*

Login to terraform:

```
terraform login
```

Setup a new terraform project:

```
cd ~
mkdir tf-cloud-test
cd tf-cloud-test
cat < backend.tf

terraform {
backend "remote" {
organization = "your-org-name"
workspaces {
name = "your-workspace"
}
}
}

EOF
```

Init it:

```
terraform init
```

above command should pop up the password dialog to decrypt your token file - (or may do so automatically if you have your GPG agent running).