From f301f384d7d333f84c066be6a0c5fd1c41154fe1 Mon Sep 17 00:00:00 2001 From: Chris Kruining Date: Tue, 3 Dec 2024 08:44:51 +0100 Subject: [PATCH] bug repro --- infrastructure/repro.bicep | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 infrastructure/repro.bicep diff --git a/infrastructure/repro.bicep b/infrastructure/repro.bicep new file mode 100644 index 0000000..965826c --- /dev/null +++ b/infrastructure/repro.bicep @@ -0,0 +1,12 @@ +import { + container + resources_xxs +} from 'br/Tricep:recommended/app/container-app:latest' + +targetScope = 'resourceGroup' + +var container1 = container({ + name: 'name' + image: 'registry/project-app:latest' + resources: resources_xxs +})