Skip to content

Instantly share code, notes, and snippets.

@cooltoast
Created January 11, 2021 18:24
Show Gist options
  • Save cooltoast/8af98edfbfd9d2da9d8bdbf761075bc4 to your computer and use it in GitHub Desktop.
Save cooltoast/8af98edfbfd9d2da9d8bdbf761075bc4 to your computer and use it in GitHub Desktop.
// A Terraform resource that creates a Terraform Enterprise Workspace.
resource "tfe_workspace" "my_workspace" {
name = "my-workspace"
// Name of team’s Organization in Terraform Enterprise.
organization = "my-organization"
vcs_repo {
identifier = "my-git-repo"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment