Terraform resource for managing an AWS CodeCatalyst Project.
resource "aws_codecatalyst_project" "test" {
space_name = "myproject"
display_name = "MyProject"
description = "My CodeCatalyst Project created using Terraform"
}
The following arguments are required:
space_name
- (Required) The name of the space.display_name
- (Required) The friendly name of the project that will be displayed to users.The following arguments are optional:
description
- (Optional) The description of the project. This description will be displayed to all users of the project. We recommend providing a brief description of the project and its intended purpose.This resource exports the following attributes in addition to the arguments above:
id
- The name of the project in the space.name
- The name of the project in the space.create
- (Default 5m
)update
- (Default 5m
)delete
- (Default 5m
)In Terraform v1.5.0 and later, use an import
block to import CodeCatalyst Project using the id
. For example:
import {
to = aws_codecatalyst_project.example
id = "project-id-12345678"
}
Using terraform import
, import CodeCatalyst Project using the id
. For example:
% terraform import aws_codecatalyst_project.example project-id-12345678