Skip to content

Commit

Permalink
adding customerAdminGroupId to osa cluster spec (#5491)
Browse files Browse the repository at this point in the history
  • Loading branch information
JackQuincy authored and praries880 committed Apr 2, 2019
1 parent 38bde49 commit 8e9cb1d
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,10 @@
"name": "Azure AD",
"provider": {
"kind": "AADIdentityProvider",
"clientId": "clientId",
"clientId": "{clientId}",
"secret": "secret",
"tenantId": "tenantId"
"tenantId": "{tenantId}",
"customerAdminGroupId": "{customerAdminGroupId}"
}
}
]
Expand Down Expand Up @@ -117,7 +118,8 @@
"provider": {
"kind": "AADIdentityProvider",
"clientId": "clientId",
"tenantId": "tenantId"
"tenantId": "tenantId",
"customerAdminGroupId": "{customerAdminGroupId}"
}
}
]
Expand Down Expand Up @@ -178,8 +180,9 @@
"name": "Azure AD",
"provider": {
"kind": "AADIdentityProvider",
"clientId": "clientId",
"tenantId": "tenantId"
"clientId": "{clientId}",
"tenantId": "{tenantId}",
"customerAdminGroupId": "{customerAdminGroupId}"
}
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,9 @@
"name": "Azure AD",
"provider": {
"kind": "AADIdentityProvider",
"clientId": "clientId",
"tenantId": "tenantId"
"clientId": "{clientId}",
"tenantId": "{tenantId}",
"customerAdminGroupId": "{customerAdminGroupId}"
}
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@
"provider": {
"kind": "AADIdentityProvider",
"clientId": "clientId",
"tenantId": "tenantId"
"tenantId": "tenantId",
"customerAdminGroupId": "{customerAdminGroupId}"
}
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@
"provider": {
"kind": "AADIdentityProvider",
"clientId": "clientId",
"tenantId": "tenantId"
"tenantId": "tenantId",
"customerAdminGroupId": "{customerAdminGroupId}"
}
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@
"provider": {
"kind": "AADIdentityProvider",
"clientId": "clientId",
"tenantId": "tenantId"
"tenantId": "tenantId",
"customerAdminGroupId": "{customerAdminGroupId}"
}
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -731,6 +731,10 @@
"tenantId": {
"type": "string",
"description": "The tenantId associated with the provider."
},
"customerAdminGroupId": {
"type": "string",
"description": "The groupId to be granted cluster admin role."
}
}
}
Expand Down

0 comments on commit 8e9cb1d

Please sign in to comment.