File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -17,9 +17,10 @@ resource "azurerm_container_group" "this" {
17
17
dynamic "image_registry_credential" {
18
18
for_each = var. image_registry_credential
19
19
content {
20
- server = image_registry_credential. value . server
21
- username = image_registry_credential. value . username
22
- password = image_registry_credential. value . password
20
+ server = image_registry_credential. value . server
21
+ username = image_registry_credential. value . username
22
+ password = image_registry_credential. value . password
23
+ user_assigned_identity_id = image_registry_credential. value . user_assigned_identity_id
23
24
}
24
25
}
25
26
Original file line number Diff line number Diff line change @@ -69,9 +69,10 @@ variable "exposed_ports_udp" {
69
69
70
70
variable "image_registry_credential" {
71
71
type = list (object ({
72
- server = string
73
- username = string
74
- password = string
72
+ server = string
73
+ username = string
74
+ password = string
75
+ user_assigned_identity_id = string
75
76
}))
76
77
description = " List of objects to configure connection to private registry"
77
78
default = []
You can’t perform that action at this time.
0 commit comments