aws_ecr_repository

Provides an EC2 Container Registry Repository.

Example Usage

resource "aws_ecr_repository" "foo" {
  name = "bar"
}

Argument Reference

The following arguments are supported:

  • name - (Required) Name of the repository.

Attributes Reference

In addition to all arguments above, the following attributes are exported:

  • arn - Full ARN of the repository.
  • name - The name of the repository.
  • registry_id - The registry ID where the repository was created.
  • repository_url - The URL of the repository (in the form aws_account_id.dkr.ecr.region.amazonaws.com/repositoryName

Import

ECR Repositories can be imported using the name, e.g.

$ terraform import aws_ecr_repository.service test-service

© 2018 HashiCorp
Licensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/r/ecr_repository.html