Skip to content

Commit eee3b61

Browse files
committed
update README.md
1 parent 7ceee99 commit eee3b61

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,11 @@ Here is an example of how you can use this module in your inventory structure:
109109
| Name | Description | Type | Default | Required |
110110
|------|-------------|------|---------|:--------:|
111111
| acr\_diag\_logs | Application Gateway Monitoring Category details for Azure Diagnostic setting | `list` | <pre>[<br> "ContainerRegistryRepositoryEvents",<br> "ContainerRegistryLoginEvents"<br>]</pre> | no |
112-
| container\_registry\_config | Manages an Azure Container Registry | <pre>object({<br> name = string<br> admin_enabled = optional(bool)<br> sku = optional(string)<br> public_network_access_enabled = optional(bool)<br> quarantine_policy_enabled = optional(bool)<br> zone_redundancy_enabled = optional(bool)<br> })</pre> | n/a | yes |
112+
| admin\_enabled | To enable of disable admin access | `bool` | `true` | no |
113+
| container\_registry\_config | Manages an Azure Container Registry | <pre>object({<br> name = string<br> sku = optional(string)<br> quarantine_policy_enabled = optional(bool)<br> zone_redundancy_enabled = optional(bool)<br> })</pre> | n/a | yes |
113114
| container\_registry\_webhooks | Manages an Azure Container Registry Webhook | <pre>map(object({<br> service_uri = string<br> actions = list(string)<br> status = optional(string)<br> scope = string<br> custom_headers = map(string)<br> }))</pre> | `null` | no |
114-
| enable\_content\_trust | Boolean value to enable or disable Content trust in Azure Container Registry | `bool` | `false` | no |
115-
| enable\_private\_endpoint | Manages a Private Endpoint to Azure Container Registry | `bool` | `false` | no |
115+
| enable\_content\_trust | Boolean value to enable or disable Content trust in Azure Container Registry | `bool` | `true` | no |
116+
| enable\_private\_endpoint | Manages a Private Endpoint to Azure Container Registry | `bool` | `true` | no |
116117
| encryption | Encrypt registry using a customer-managed key | <pre>object({<br> key_vault_key_id = string<br> identity_client_id = string<br> })</pre> | `null` | no |
117118
| environment | Environment (e.g. `prod`, `dev`, `staging`). | `string` | `""` | no |
118119
| existing\_private\_dns\_zone | Name of the existing private DNS zone | `any` | `null` | no |
@@ -125,19 +126,19 @@ Here is an example of how you can use this module in your inventory structure:
125126
| managedby | ManagedBy, eg ''. | `string` | `""` | no |
126127
| name | Name (e.g. `app` or `cluster`). | `string` | `""` | no |
127128
| network\_rule\_set | Manage network rules for Azure Container Registries | <pre>object({<br> default_action = optional(string)<br> ip_rule = optional(list(object({<br> ip_range = string<br> })))<br> virtual_network = optional(list(object({<br> subnet_id = string<br> })))<br> })</pre> | `null` | no |
128-
| private\_dns\_name | n/a | `string` | `""` | no |
129+
| private\_dns\_name | n/a | `string` | `"privatelink.azurecr.io"` | no |
129130
| private\_dns\_zone\_vnet\_link\_registration\_enabled | (Optional) Is auto-registration of virtual machine records in the virtual network in the Private DNS zone enabled? | `bool` | `true` | no |
130131
| private\_subnet\_address\_prefix | The name of the subnet for private endpoints | `any` | `null` | no |
132+
| public\_network\_access\_enabled | To denied public access | `bool` | `false` | no |
131133
| repository | Terraform current module repo | `string` | `""` | no |
132134
| resource\_group\_name | A container that holds related resources for an Azure solution | `string` | `""` | no |
133-
| retention\_policy | Set a retention policy for untagged manifests | <pre>object({<br> days = optional(number)<br> enabled = optional(bool)<br> })</pre> | `null` | no |
135+
| retention\_policy | Set a retention policy for untagged manifests | <pre>object({<br> days = optional(number)<br> enabled = optional(bool)<br> })</pre> | <pre>{<br> "days": 10,<br> "enabled": true<br>}</pre> | no |
134136
| scope\_map | Manages an Azure Container Registry scope map. Scope Maps are a preview feature only available in Premium SKU Container registries. | <pre>map(object({<br> actions = list(string)<br> }))</pre> | `null` | no |
135137
| storage\_account\_id | n/a | `string` | `null` | no |
136138
| storage\_account\_name | The name of the hub storage account to store logs | `any` | `null` | no |
137139
| subnet\_id | Subnet to be used for private endpoint | `list(string)` | `null` | no |
138140
| tags | A map of tags to add to all resources | `map(string)` | `{}` | no |
139141
| virtual\_network\_id | Virtual Network to be used for private endpoint | `string` | `null` | no |
140-
| virtual\_network\_name | The name of the virtual network | `string` | `""` | no |
141142

142143
## Outputs
143144

0 commit comments

Comments
 (0)