-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentra-id.bicep
35 lines (23 loc) · 865 Bytes
/
entra-id.bicep
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import * as _entraIdVar from 'private/variables/entra-id.bicep'
import * as _entraIdType from 'private/types/entra-id.bicep'
/* ----------------------------------------
🤠 Bicep# - Public variables 🤠
------------------------------------------- */
@description('''
Value of a principal to grant a role to. An individual value matches the `principal` type.
''')
@export()
var principals = _entraIdVar.entraIdPrincipals
@export()
var entraIdApps = _entraIdVar.entraIdApps
/* ----------------------------------------
😎 Bicep# - Public types 😎
------------------------------------------- */
@description('''
Type of principal to grant a role to.
''')
@export()
type principal = _entraIdType.principal
/* ----------------------------------------
💪 Bicep# - Public functions 💪
------------------------------------------- */