We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
appID
Currently, one account can only be associated with one appID. This seems to be an issue, because some configurations a specific appID per each role.
Allow to optionally specify multiple appIDs depending on role using a map field appIDsByRole in the account struct.
appIDsByRole
account
Example:
accounts: - name: ACME Dev appIDsByRole: admin: "123456" readonly: "987654" accountID: "111111111111" profileName: acme-dev roles: - admin - readonly
This is backwards compatible, because if appIDsByRole is not specified, the appID field is used.
The text was updated successfully, but these errors were encountered:
feat: multiple appID depending on role in4it#8
4ca4c70
Allow to specify appID per each role (#9)
6c76da1
multiple appID depending on role #8
No branches or pull requests
Problem
Currently, one account can only be associated with one
appID
. This seems to be an issue, because some configurations a specificappID
per each role.Solution
Allow to optionally specify multiple
appID
s depending on role using a map fieldappIDsByRole
in theaccount
struct.Example:
Backwards compatibility
This is backwards compatible, because if
appIDsByRole
is not specified, theappID
field is used.The text was updated successfully, but these errors were encountered: