terraform-cloud-cli

command module
v0.1.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 22, 2020 License: MIT Imports: 4 Imported by: 0

README

terraform-cloud-cli tests

Interactive CLI for operating workspaces in Terraform Cloud

terraform-cloud is an interactive CLI that helps automate complex and repetitive tasks in Terraform Cloud. It is designed to compliment the Terraform Enterprise Provider. The tfe provider can manage teams, workspaces, variables, and other Terraform Cloud resources. This CLI is not focused on being a complete API client.

Status: Early development. You will likely encounter bugs. Breaking changes will bump the 0.x version until version 1.0.0.

Installing

Binaries are available for each tagged release. Download an appropriate binary for your operating system and install it into $PATH.

You can also install with Homebrew:

brew tap bendrucker/terraform-cloud-cli
brew install terraform-cloud-cli

Usage

Usage: terraform-cloud [--version] [--help] <command> [<args>]

Available commands are:
    migrate    Migrate a Terraform module from an existing backend to Terraform Cloud
    open       Opens the Terraform Cloud UI to the workspace

migrate
Usage: terraform-cloud migrate [options]
	Migrate a Terraform module from an existing backend to Terraform Cloud

Options:
  --hostname string
    	Hostname for Terraform Cloud

  --modules string
    	A directory where other Terraform modules are stored. If set, it will be scanned recursively for terraform_remote_state references.

  --organization string
    	Organization name in Terraform Cloud

  --tfvars-filename string
    	New filename for terraform.tfvars

  --workspace-name string
    	The name of the Terraform Cloud workspace (conflicts with --workspace-prefix)

  --workspace-prefix string
    	The prefix of the Terraform Cloud workspaces (conflicts with --workspace-name)

  --workspace-variable string
    	Variable that will replace terraform.workspace

The migrate command performs the following file updates and runs terraform init to trigger Terraform to copy state to the new

  • Configures a remote backend. (?).
  • Updates any terraform_remote_state data sources that match the previous backend configuration.
  • Replaces terraform.workspace with a variable of your choice, var.environment by default. (?)
  • Renames terraform.tfvars to a name of your choice, terraform.auto.tfvars by default. (?)
Examples
Basic
terraform-cloud migrate --organization my-org --workspace-name my-ws ./path/to/module
Remote State

Updates terraform_remote_state data sources in ~/src/tf:

terraform-cloud migrate --modules ~/src/tf # ...
Terraform Enterprise

By default, terraform-cloud connects to Terraform Cloud at app.terraform.io. Terraform Enterprise users can set a custom hostname:

terraform-cloud migrate --hostname terraform.enterprise.host # ...

License

MIT © Ben Drucker

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL