https://github.com/multani/terraform-tfc-workspace
https://github.com/multani/terraform-tfc-workspace
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/multani/terraform-tfc-workspace
- Owner: multani
- License: mit
- Created: 2024-03-03T15:15:02.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-12T14:18:33.000Z (about 1 year ago)
- Last Synced: 2025-03-12T15:27:50.264Z (about 1 year ago)
- Language: HCL
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Terraform module to manage Terraform Cloud workspace
This is a personal (opiniated) Terraform module to manage my [Terraform Cloud
workspaces](https://developer.hashicorp.com/terraform/cloud-docs/workspaces).
## How to use?
```hcl
module "test" {
source = "multani/workspace/tfc"
version = "1.0.0"
name = "test"
organization = data.tfe_organization.this.id
terraform_version = "1.7.4"
vcs_repos_name = "multani/tf-test"
vcs_oauth_token_id = data.tfe_oauth_client.github.oauth_token_id
}
```