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

https://github.com/happypathway/tfe-backup


https://github.com/happypathway/tfe-backup

Last synced: over 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# TFE_WorkspaceBackup
This tool provides the ability to backup terraform enterprise workspaces.
It will use the TFE Rest API and collect data about your workspaces, then using templates, will create proper terraform configurations to allow you to rebuild the workspaces.

## Usage

### Backup All Workspaces in Organization:
The following command will:
- backup all workspaces in an organization
- format the configuration files correctly
- validate the configuration files
- perform init to to update the providers
```bash
tfe-backup -o -b --fmt --init --validate
```

### Backup Single Workspace in Organization:
The following command will:
- backup a single in an organization
- format the configuration files correctly
- validate the configuration files
- perform init to to update the providers
```bash
tfe-backup -o -w -b --fmt --init --validate
```

### Clone Single Workspace in Organization:
The following command will:
- backup a single in an organization
- set name of workspace in configuration to new workspace name
- write out configuration for new workspace into a properly named configuration file
- format the configuration files correctly
- validate the configuration files
- perform init to to update the providers
```bash
tfe-backup -o -w --new-ws --fmt --init --validate
```