team

dhoppeIT/team/tfe

Terraform Module HCL TFE

Terraform module to manage the Terraform Cloud/Enterprise resources (tfe_team, tfe_team_organization_member, tfe_team_token)

Install
module "team" {
source = "dhoppeIT/team/tfe"
version = "0.2.0"
}
plain text: /constructs/tfmod-dhoppeit-team-tfe/install.txt
⭐ Source on GitHub 📦 Registry page
README

terraform-tfe-team Terraform module to manage the following Terraform Cloud/Enterprise resources: tfe_team tfe_team_organization_member * tfe_team_token Graph Usage Copy and paste into your Terraform configuration, insert the variables and run ``terraform init`: `hcl module "tfe_organization" { source = "dhoppeIT/organization/tfe" version = "~> 0.1" name = "dhoppeIT" email = "terraform@dhoppe.it" members = [ "dennis.hoppe@dhoppe.it" ] } module "tfe_team" { source = "dhoppeIT/team/tfe" version = "~> 0.1" name = "owners" organization = module.tfe_organization.name organization_membership_id = module.tfe_organization.id } ` Requirements | Name | Version | |------|---------| | terraform | >= 1.0 | | tfe | ~> 0.26 | Providers | Name | Version | |------|---------| | tfe | 0.28.0 | Modules No mod

Inputs (4)
NameTypeDescriptionDefault
namestringName of the team required
organizationstringName of the organization required
organization_membership_idlist(string)ID of the organization membership required
force_regenerateboolIf set to true, a new token will be generated even if a token already existsfalse
Outputs (2)
id — The ID of the token
token — The generated token
Resources (2)
tfe_team_organization_membertfe_team_token
Details
FrameworkTerraform Module
LanguageHCL
Version0.2.0
Cloud TFE
★ Stars0
Forks0
Total downloads4.2k
Inputs4
Outputs2
Resources2
Examples1
LicenseApache-2.0
NamespacedhoppeIT
Updated