├── .github ├── CODEOWNERS └── workflows │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── README.tfdoc.hcl ├── examples ├── README.md └── ecr │ ├── README.md │ └── main.tf ├── go.mod ├── go.sum ├── main.tf ├── outputs.tf ├── test ├── Dockerfile ├── README.md ├── ecr_repository_test.go └── ecr_repository_test │ ├── main.tf │ ├── outputs.tf │ └── variables.tf ├── variables.tf └── versions.tf /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @mariux @mineiros-io/terraform-service-catalog 2 | -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineiros-io/terraform-aws-ecr/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineiros-io/terraform-aws-ecr/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineiros-io/terraform-aws-ecr/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineiros-io/terraform-aws-ecr/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineiros-io/terraform-aws-ecr/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineiros-io/terraform-aws-ecr/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineiros-io/terraform-aws-ecr/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineiros-io/terraform-aws-ecr/HEAD/README.md -------------------------------------------------------------------------------- /README.tfdoc.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineiros-io/terraform-aws-ecr/HEAD/README.tfdoc.hcl -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineiros-io/terraform-aws-ecr/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/ecr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineiros-io/terraform-aws-ecr/HEAD/examples/ecr/README.md -------------------------------------------------------------------------------- /examples/ecr/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineiros-io/terraform-aws-ecr/HEAD/examples/ecr/main.tf -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineiros-io/terraform-aws-ecr/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineiros-io/terraform-aws-ecr/HEAD/go.sum -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineiros-io/terraform-aws-ecr/HEAD/main.tf -------------------------------------------------------------------------------- /outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineiros-io/terraform-aws-ecr/HEAD/outputs.tf -------------------------------------------------------------------------------- /test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineiros-io/terraform-aws-ecr/HEAD/test/Dockerfile -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineiros-io/terraform-aws-ecr/HEAD/test/README.md -------------------------------------------------------------------------------- /test/ecr_repository_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineiros-io/terraform-aws-ecr/HEAD/test/ecr_repository_test.go -------------------------------------------------------------------------------- /test/ecr_repository_test/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineiros-io/terraform-aws-ecr/HEAD/test/ecr_repository_test/main.tf -------------------------------------------------------------------------------- /test/ecr_repository_test/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineiros-io/terraform-aws-ecr/HEAD/test/ecr_repository_test/outputs.tf -------------------------------------------------------------------------------- /test/ecr_repository_test/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineiros-io/terraform-aws-ecr/HEAD/test/ecr_repository_test/variables.tf -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineiros-io/terraform-aws-ecr/HEAD/variables.tf -------------------------------------------------------------------------------- /versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineiros-io/terraform-aws-ecr/HEAD/versions.tf --------------------------------------------------------------------------------