-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f9d18d3
commit cc55767
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,7 +79,7 @@ Here is an example of how you can use this module in your inventory structure: | |
```hcl | ||
module "ecr" { | ||
source = "clouddrove/ecr/aws" | ||
version = "1.0.1" | ||
version = "1.3.0" | ||
name = "ecr" | ||
scan_on_push = true | ||
image_tag_mutability = "MUTABLE" | ||
|
@@ -100,7 +100,7 @@ Here is an example of how you can use this module in your inventory structure: | |
| enabled\_ecr | Set to false to prevent the module from creating any resources. | `bool` | `true` | no | | ||
| encryption\_configuration | ECR encryption configuration | <pre>object({<br> encryption_type = string<br> kms_key = any<br> })</pre> | `null` | no | | ||
| environment | Environment (e.g. `prod`, `dev`, `staging`). | `string` | `"test"` | no | | ||
| image\_scanning\_configuration | Configuration block that defines image scanning configuration for the repository. By default, image scanning must be manually triggered. See the ECR User Guide for more information about image scanning. | `map` | `{}` | no | | ||
| image\_scanning\_configuration | Configuration block that defines image scanning configuration for the repository. By default, image scanning must be manually triggered. See the ECR User Guide for more information about image scanning. | `map(any)` | `{}` | no | | ||
| image\_tag\_mutability | The tag mutability setting for the repository. | `string` | `"IMMUTABLE"` | no | | ||
| label\_order | Label order, e.g. `name`,`application`. | `list(any)` | `[]` | no | | ||
| managedby | ManagedBy, eg 'CloudDrove' | `string` | `"[email protected]"` | no | | ||
|
@@ -111,7 +111,7 @@ Here is an example of how you can use this module in your inventory structure: | |
| repository | Terraform current module repo | `string` | `"https://github.com/clouddrove/terraform-aws-ecr"` | no | | ||
| scan\_on\_push | Indicates whether images are scanned after being pushed to the repository (true) or not scanned (false). | `bool` | `true` | no | | ||
| tags | Additional tags (e.g. map(`BusinessUnit`,`XYZ`). | `map(any)` | `{}` | no | | ||
| timeouts | Timeouts map. | `map` | `{}` | no | | ||
| timeouts | Timeouts map. | `map(any)` | `{}` | no | | ||
| use\_fullname | Set 'true' to use `namespace-stage-name` for ecr repository name, else `name`. | `bool` | `true` | no | | ||
|
||
## Outputs | ||
|