aws_ecr_repository
Provides an EC2 Container Registry Repository.
NOTE on ECR Availability: The EC2 Container Registry is not yet rolled out in all regions - available regions are listed the AWS Docs.
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 formaws_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 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/r/ecr_repository.html