Skip to content

Commit 7102482

Browse files
Fix admin_enabled variable type from string to bool in container_registry module
Agent-Logs-Url: https://github.com/localstack/localstack-azure-samples/sessions/f4b9445e-0f95-4086-99a6-d7fc7d8e5026 Co-authored-by: paolosalvatori <1658419+paolosalvatori@users.noreply.github.com>
1 parent 11e3b7c commit 7102482

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • samples/web-app-custom-image/python/terraform/modules/container_registry

samples/web-app-custom-image/python/terraform/modules/container_registry/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ variable "location" {
1515

1616
variable "admin_enabled" {
1717
description = "(Optional) Specifies whether the admin user is enabled. Defaults to false."
18-
type = string
18+
type = bool
1919
default = false
2020
}
2121

0 commit comments

Comments
 (0)