calque/infrastructure/types.bicep
2024-11-18 08:13:32 +01:00

12 lines
208 B
Bicep

@export()
type Context = {
@minLength(2)
locationAbbreviation: string
@minLength(2)
location: string
@minLength(3)
environment: string
@minLength(2)
projectName: string
deployedAt: string
}