https://github.com/saidsef/terraform-tfe-workspaces
Terraform module to configure TFE/TFC workspaces in Terraform Cloud
https://github.com/saidsef/terraform-tfe-workspaces
terraform-cloud terraform-module terraform-tfe terraform-tfe-workspaces terraform-workspace
Last synced: 3 months ago
JSON representation
Terraform module to configure TFE/TFC workspaces in Terraform Cloud
- Host: GitHub
- URL: https://github.com/saidsef/terraform-tfe-workspaces
- Owner: saidsef
- License: apache-2.0
- Created: 2024-02-25T10:45:52.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-19T16:53:21.000Z (10 months ago)
- Last Synced: 2025-01-15T01:50:39.706Z (4 months ago)
- Topics: terraform-cloud, terraform-module, terraform-tfe, terraform-tfe-workspaces, terraform-workspace
- Language: HCL
- Homepage:
- Size: 37.1 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Terraform TFE/C Workspaces Module
[](#deployment--usage)  [](./LICENSE.md)This Terraform workspaces module oversees the configuration and lifecycle of all your Terraform Cloud workspaces. It is built to operate from a designated Terraform Cloud workspace, tasked with provisioning and managing the remaining workspaces through Terraform code (IaC).
## Prerequisites
- Terraform Cloud / Enterprise account
- Terraform >= 1.3
- ...
- Profit?## Deployment / Usage
```terraform
provider "tfe" {
hostname = var.hostname
token = var.token
version = ">= 0.46"
}module "tfe-workspaces" {
source = "saidsef/terraform-tfe-workspaces/tfe"
version = ">= 1"name = "platform"
organization = "saidsef"
}
```## Provider Specifications and Requirements
Please see [TERRAFORM.md](./TERRAFORM.md)
## Source
Our latest and greatest source of `terraform-tfe-workspaces` can be found on [GitHub](https://github.com/saidsef/terraform-tfe-workspaces/). Fork us!
## Contributing
We would :heart: you to contribute by making a [pull request](https://github.com/saidsef/terraform-tfe-workspaces/pulls).
Please read the official [Contribution Guide](./CONTRIBUTING.md) for more information on how you can contribute.