» tfe_organization
Manages organizations.
» Example Usage
Basic usage:
resource "tfe_organization" "test" {
name = "my-org-name"
email = "admin@company.com"
}
» Argument Reference
The following arguments are supported:
-
name
- (Required) Name of the organization. -
email
- (Required) Admin email address. -
session_timeout_minutes
- (Optional) Session timeout after inactivity. Defaults to20160
. -
session_remember_minutes
- (Optional) Session expiration. Defaults to20160
. -
collaborator_auth_policy
- (Optional) Authentication policy (password
ortwo_factor_mandatory
). Defaults topassword
. -
owners_team_saml_role_id
- (Optional) The name of the "owners" team.
» Attributes Reference
-
id
- The name of the organization.
» Import
Organizations can be imported; use <ORGANIZATION NAME>
as the import ID. For
example:
terraform import tfe_organization.test my-org-name