tfcloud
is a Terraform Cloud (and Terraform Enterprise) CLI tool.
tfcloud
is a Terraform Cloud (and Terraform Enterprise) CLI tool that is created with a specific purpose in mind and does not intend to implement all Terraform Cloud / Enterprise APIs.- While
tfcloud
should work with Terraform Enterprise due to the similarity of their APIs, it hasn't been tested in actual Terraform Enterprise environments.
brew install chroju/tap/tfcloud
Download the latest binary from the following link and place it in your $PATH
directory.
https://github.com/chroju/tfcloud/releases
tfcloud
requires a Terraform Cloud / Enterprise token for authentication. The method for this is the same as described in CLI Configuration - Terraform by HashiCorp such as
terraform login
command$HOME/.terraformrc
TF_CLI_CONFIG_FILE
environment variableTF_TOKEN_hostname
environment variable
tfcloud
supports table and JSON output formats. The default is table format, but you can change it with the --format
option. The table format is user-friendly, but does not contain all the information. If you want to get all the information, use the JSON format.
#### run
```bash
# Lists all current Terraform runs
$ tfcloud run list <organization>
# Approves the specified Terraform run
$ tfcloud run apply <run ID>
# Lists all workspaces in the organization
$ tfcloud workspace list <organization>
# View Terraform Cloud workspace details
$ tfcloud workspace view # Read the remote config in the current directory
$ tfcloud workspace view --org <organization> --workspace <workspace name> # You can also specify the organization and workspace name
# Upgrades Terraform cloud workspace terraform version
$ tfcloud workspace upgrade [OPTION]
Notes:
This command works by reading the remote config in the current directory.
You must run this command in the directory where the target terraform file resides.
Or you can specify the target directory with the --root-path option.
Options:
--upgrade-version, -u Terraform version to upgrade.
It must be in the correct semantic version format like 0.12.1, v0.12.2 .
Or you can specify "latest" to automatically upgrade to the latest version.
(default: latest)
--root-path Terraform config root path. (default: current directory)
--auto-approve Skip interactive approval of upgrade.
# Lists all Terraform registry modules
$ tfcloud module list
# Lists all registry module versions
$ tfcloud module versions <organization> <provider> <module name>