You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 8, 2022. It is now read-only.
* Upgrade module to support Terraform 0.12
Following the instructions outlined in the Terraform documentation, update the module's configuration to support Terraform 0.12. Despite containing minor changes, this is expected to cause a major version bump, because the changes are not backwards compatible.
* Apply suggestions from code review
Co-authored-by: Cole Kettler <me@colekettler.com>
Co-authored-by: Cole Kettler <me@colekettler.com>
Copy file name to clipboardExpand all lines: README.md
+7-8Lines changed: 7 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -16,16 +16,15 @@ module "ecr-repository" {
16
16
}
17
17
```
18
18
19
-
20
19
## Variables
21
20
22
-
-`repository_name` - name of the repository
23
-
-`attach_lifecycle_policy` - attach an [ECR lifecycle policy](https://docs.aws.amazon.com/AmazonECR/latest/userguide/LifecyclePolicies.html) (default: `false`)
24
-
-`lifecycle_policy` - ECR lifecycle policy (default: the contents of `default-lifecycle-policy.json.tpl`, untagged images older than 7 days will be deleted)
21
+
-`repository_name` - Name of the repository
22
+
-`attach_lifecycle_policy` - If true, an [ECR lifecycle policy](https://docs.aws.amazon.com/AmazonECR/latest/userguide/LifecyclePolicies.html) will be attached (default: `false`)
23
+
-`lifecycle_policy` - Contents of the ECR lifecycle policy (default: contents of `default-lifecycle-policy.json.tpl`, untagged images older than 7 days will be deleted)
25
24
26
25
## Outputs
27
26
28
-
-`arn` - full ARN of the repository
29
-
-`name` - the name of the repository
30
-
-`registry_id` - the registry ID where the repository was created
31
-
-`repository_url` - the URL of the repository (in the form aws_account_id.dkr.ecr.region.amazonaws.com/repositoryName)
27
+
-`arn` - Full ARN of the repository
28
+
-`name` - Name of the repository
29
+
-`registry_id` - Registry ID where the repository was created
30
+
-`repository_url` - URL of the repository (in the form aws_account_id.dkr.ecr.region.amazonaws.com/repositoryName)
0 commit comments