Resource: aws_codecatalyst_project

Terraform resource for managing an AWS CodeCatalyst Project.

Example Usage

Basic Usage

resource "aws_codecatalyst_project" "test" {
  space_name   = "myproject"
  display_name = "MyProject"
  description  = "My CodeCatalyst Project created using Terraform"
}

Argument Reference

The following arguments are required:

The following arguments are optional:

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Timeouts

Configuration options:

Import

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