12 lines
208 B
Bicep
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
|
|
}
|