Skip to content

Commit

Permalink
fix(config): remove unneeded traits
Browse files Browse the repository at this point in the history
  • Loading branch information
mmoreiradj committed Nov 7, 2024
1 parent 5fec980 commit f3c8f14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ pub enum ConfigurationError {
MalformedSSORoleArn,
}

#[derive(Clone, Debug, PartialEq)]
#[derive(Clone)]
pub struct Credentials {
pub region: Region,
pub service_account_name: String,
pub credentials_mode: CredentialsMode,
}

#[derive(Clone, Debug, PartialEq)]
#[derive(Clone)]
pub enum CredentialsMode {
RoleBased {
aws_role_arn: RoleArn,
Expand Down

0 comments on commit f3c8f14

Please sign in to comment.