Skip to content

Commit

Permalink
Convert AWS Secret Key to use Secret rather than String primitive type.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jmcfar committed May 17, 2018
1 parent 4bef706 commit a086092
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public AWSCodeDeployPublisher(
String versionFileName,
String deploymentMethod,
String awsAccessKey,
Secret awsSecretKey,
String awsSecretKey,
String iamRoleArn,
String externalId,
String includes,
Expand All @@ -153,7 +153,7 @@ public AWSCodeDeployPublisher(
this.deploymentMethod = deploymentMethod;
this.versionFileName = versionFileName;
this.awsAccessKey = awsAccessKey;
this.awsSecretKey = awsSecretKey;
this.awsSecretKey = Secret.fromString(awsSecretKey);
this.iamRoleArn = iamRoleArn;
this.deploymentGroupAppspec = deploymentGroupAppspec;

Expand Down

0 comments on commit a086092

Please sign in to comment.