You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support for the temporary AWS session credentials. Additional flag iam-sessiontoken allows user to set the AWS IAM session token that is required if temporary IAM session is used. This should unblock users who use SSO or IAM role for authentication.
Copy file name to clipboardExpand all lines: dumper/app/src/main/java/com/google/edwmigration/dumper/application/dumper/connector/redshift/AbstractAwsApiTask.java
Copy file name to clipboardExpand all lines: dumper/app/src/main/java/com/google/edwmigration/dumper/application/dumper/connector/redshift/AbstractRedshiftConnector.java
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -64,6 +64,11 @@
64
64
arg = ConnectorArguments.OPT_IAM_SECRETACCESSKEY,
65
65
description = "The IAM Secret Access Key to use for authentication.",
66
66
required = "If present, performs explicit IAM authentication")
67
+
@RespectsInput(
68
+
order = 457,
69
+
arg = ConnectorArguments.OPT_IAM_SESSIONTOKEN,
70
+
description = "The IAM Session Token to use for authentication.",
71
+
required = "Required if temporary IAM session is created")
Copy file name to clipboardExpand all lines: dumper/app/src/main/java/com/google/edwmigration/dumper/application/dumper/connector/redshift/RedshiftUrlUtil.java
0 commit comments