Skip to main content

Tool to perform dynamic terraform applies w/replacement on TFC using resource name keywords.

Project description

tfc-ws-apply-replace

What does it do?

This script targets a TFC workspace and runs the equivalent of a terraform apply -replace=[] on a dynamic set of resources determined by a provided keyword

Why?

In certain TFC implementations, people will use a tightly controlled organization and workspace to create child organizations and workspaces. This is commonly referred to as the workspace vending machine approach. In this model, the parent workspace is also responsible for managing the child workspace's credentials in the form of sensitive workspace variables. However, setting those variables once and never rotating them introduces some risk. Using this script, you can schedule the rotation of those credentials (or any other type of resource).

Usage

  1. Set an environment variable TFC_TOKEN equal to a valid TFC token with adequate permissions
  2. run python3 rotate.py <org name> <workspace ID> <resource name filter> where:
  • org name: is the name of the org that contains your workspace
  • workspace ID: is the ws-xxxxxxxxxxxxxxxx formatted ID of your target workspace
  • resource name filter: is the beginning of the resource name string

Example

My parent workspace creates a child workspace and an IAM user specific to the child workspace. It then generates aws_iam_access_key credentials and assigns them to the child workspace as a sensitive variable:

resource "aws_iam_user" "iam_user" {
  name = "tfc_workspace_${tfe_workspace.workspace.name}"
}

resource "aws_iam_user_policy_attachment" "iam_user_policy_attach" {
  user       = aws_iam_user.iam_user.name
  policy_arn = var.workspace_iam_policy
}

resource "aws_iam_access_key" "workspace_creds" {
  user = aws_iam_user.iam_user.name
}

resource "tfe_variable" "aws_access_key_id" {
  key          = "AWS_ACCESS_KEY_ID"
  category     = "env"
  value        = aws_iam_access_key.workspace_creds.id
  workspace_id = tfe_workspace.workspace.id
}

resource "tfe_variable" "aws_secret_access_key" {
  key          = "AWS_SECRET_ACCESS_KEY"
  category     = "env"
  sensitive    = true
  value        = aws_iam_access_key.workspace_creds.secret
  workspace_id = tfe_workspace.workspace.id
}

If I wanted to replace/rotate the resource aws_iam_access_key (and by relation any resource that depends on it, i.e. the tfe_variable.aws_secret_access_key resource), I would use the resources given name workspace_creds

python3 rotate.py some-org ws-xxxxxxxxxxxxxxxx workspace_creds
-------------------------------------
TFC Organization Name: some-org
TFC Workspace ID: ws-xxxxxxxxxxxxxxxx
Resource Name FIlter: workspace_creds
-------------------------------------

Found 3 resources whose name(s) start with the keyword:

    module.ws_vending_machine["djs-ec2"].aws_iam_access_key.workspace_creds
    module.ws_vending_machine["djs-iam"].aws_iam_access_key.workspace_creds
    module.ws_vending_machine["djs-s3"].aws_iam_access_key.workspace_creds

Triggering a 'terraform apply -replace=' to rotate the found resources...

Link to run: https://app.terraform.io/app/some-org/workspaces/some-workspace/runs/run-xxxxxxxxxxxxxxxx

Status: pending...
Status: plan_queued...
Status: planning...
Status: cost_estimating...
Status: applying...
Status: applied...

While this workspace manages 23 resources in total, you can see below the script targeted only the resources needed to rotate the downstream workspace's access keys: screen shot This script can be scheduled to rotate the credentials limiting the risk of bad terraform code leaking the sensitive variables.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tfc-apply-replace-1.0.2.tar.gz (4.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tfc_apply_replace-1.0.2-py3-none-any.whl (5.5 kB view details)

Uploaded Python 3

File details

Details for the file tfc-apply-replace-1.0.2.tar.gz.

File metadata

  • Download URL: tfc-apply-replace-1.0.2.tar.gz
  • Upload date:
  • Size: 4.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for tfc-apply-replace-1.0.2.tar.gz
Algorithm Hash digest
SHA256 d3d71d4c2e6928a503267962cf0e7f84c1eb8f4f16c6f2fc2bea732e8e934ab1
MD5 1a4f478bed06a687917b180a8f5f7d7f
BLAKE2b-256 3c92ef0317d8c45c544bf4e2aa6fbbb0a3dc8563ff7935e36f4b8618a4c0486e

See more details on using hashes here.

File details

Details for the file tfc_apply_replace-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: tfc_apply_replace-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 5.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for tfc_apply_replace-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 3317c56117b042ae750a11c8d4990e3d5908f90968761275d7e493d454f0ad51
MD5 8cd9764df6f5a1da5653987b738c1028
BLAKE2b-256 36a0d80cd26bca5f4870649808e61192a8669888d971cc973e27982eaa05921e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page