Provides a project resource.
Basic usage:
resource "tfe_organization" "test-organization" {
name = "my-org-name"
email = "admin@company.com"
}
resource "tfe_project" "test" {
organization = tfe_organization.test-organization.name
name = "projectname"
}
The following arguments are supported:
name
- (Required) Name of the project.organization
- (Optional) Name of the organization. If omitted, organization must be defined in the provider config.description
- (Optional) A description for the project.In addition to all arguments above, the following attributes are exported:
id
- The project ID.Projects can be imported; use <PROJECT ID>
as the import ID. For example:
terraform import tfe_project.test prj-niVoeESBXT8ZREhr