Skip to content

Commit bb80f68

Browse files
committed
Update uniqueSuffix variable to limit length to 10 characters for consistency
1 parent 3b1592b commit bb80f68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

infra/bicep/main.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var uniqueSuffix = replace(guid(subscription().subscriptionId), '-', '')
1+
var uniqueSuffix = substring(replace(guid(subscription().subscriptionId), '-', ''), 0, 10)
22
var location = 'eastasia'
33

44
targetScope='subscription'

0 commit comments

Comments
 (0)