Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
Merge pull request #25 from Cox-Automotive/bugFix_allowMIs
Browse files Browse the repository at this point in the history
[BUGFIX] Allow MIs
  • Loading branch information
amagana3 committed Sep 23, 2020
2 parents adc9322 + af9a3af commit f2a71ba
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/alks-api.js
Original file line number Diff line number Diff line change
Expand Up @@ -329,13 +329,14 @@ exports.createIamRole = function(account, auth, roleName, roleType, includeDefau
});
};

exports.createIamTrustRole = function(account, auth, roleName, roleType, trustArn, opts, callback){
exports.createIamTrustRole = function(account, auth, roleName, roleType, trustArn, enableAlksAccess, opts, callback){
var payload = _.extend({
account: account.alksAccount,
role: account.alksRole,
roleName: roleName,
roleType: roleType,
trustArn: trustArn
trustArn: trustArn,
enableAlksAccess: enableAlksAccess
}, account),
options = _.extend({
debug: false,
Expand Down

0 comments on commit f2a71ba

Please sign in to comment.