aws_assume_role 1.2.0-linux → 1.2.1-linux
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/CHANGELOG.md +3 -0
 - data/lib/aws_assume_role/credentials/factories/abstract_factory.rb +1 -1
 - data/lib/aws_assume_role/credentials/factories/default_chain_provider.rb +2 -2
 - data/lib/aws_assume_role/credentials/factories/repository.rb +1 -1
 - data/lib/aws_assume_role/credentials/providers/mfa_session_credentials.rb +1 -1
 - data/lib/aws_assume_role/profile_configuration.rb +2 -2
 - data/lib/aws_assume_role/runner.rb +1 -1
 - data/lib/aws_assume_role/version.rb +1 -1
 - metadata +2 -2
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 929817476b6ef7250b75e966fc34171fdbac7c27034b4bd98e07e94f975b238c
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 5aa8964a12fbdea50c36de59ceec367b85e6cba98f817c017279f719f2f510da
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 5a9c04de9d576dfb101f757f58c6e2ed7ab657eb520b25039293ffa116b982b52ea97599b5b704927fe8efaf55f520d41df681238ca11dc9f2a69e1b8ae1cd0c
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 5b72c73867c03f78f8314472cc7bdb1c49b6594787278fbe032a6e513d2590943719ca31fc1cd30786f5873463b20e483cc92c42cc3aa973a0ac37a0f0cb55c0
         
     | 
    
        data/CHANGELOG.md
    CHANGED
    
    
| 
         @@ -19,9 +19,9 @@ class AwsAssumeRole::Credentials::Factories::DefaultChainProvider < Dry::Struct 
     | 
|
| 
       19 
19 
     | 
    
         | 
| 
       20 
20 
     | 
    
         
             
                attribute :access_key_id, Dry::Types["strict.string"].optional
         
     | 
| 
       21 
21 
     | 
    
         
             
                attribute :credentials, Dry::Types["object"].optional
         
     | 
| 
       22 
     | 
    
         
            -
                attribute :duration_seconds, Dry::Types["coercible. 
     | 
| 
      
 22 
     | 
    
         
            +
                attribute :duration_seconds, Dry::Types["coercible.integer"].optional
         
     | 
| 
       23 
23 
     | 
    
         
             
                attribute :external_id, Dry::Types["strict.string"].optional
         
     | 
| 
       24 
     | 
    
         
            -
                attribute :instance_profile_credentials_retries, Dry::Types["strict. 
     | 
| 
      
 24 
     | 
    
         
            +
                attribute :instance_profile_credentials_retries, Dry::Types["strict.integer"].default(0)
         
     | 
| 
       25 
25 
     | 
    
         
             
                attribute :instance_profile_credentials_timeout, Dry::Types["coercible.float"].default(1.0)
         
     | 
| 
       26 
26 
     | 
    
         
             
                attribute :mfa_serial, Dry::Types["strict.string"].optional
         
     | 
| 
       27 
27 
     | 
    
         
             
                attribute :no_profile, Dry::Types["strict.bool"].default(false)
         
     | 
| 
         @@ -7,7 +7,7 @@ class AwsAssumeRole::Credentials::Factories::Repository 
     | 
|
| 
       7 
7 
     | 
    
         
             
                include AwsAssumeRole::Credentials::Factories
         
     | 
| 
       8 
8 
     | 
    
         | 
| 
       9 
9 
     | 
    
         
             
                SubFactoryRepositoryType = Types::Hash.schema(
         
     | 
| 
       10 
     | 
    
         
            -
                    Types::Coercible:: 
     | 
| 
      
 10 
     | 
    
         
            +
                    Types::Coercible::Integer => Types::Strict::Array.meta(omittable: true),
         
     | 
| 
       11 
11 
     | 
    
         
             
                )
         
     | 
| 
       12 
12 
     | 
    
         | 
| 
       13 
13 
     | 
    
         
             
                FactoryRepositoryType = Types::Hash.schema(
         
     | 
| 
         @@ -30,7 +30,7 @@ class AwsAssumeRole::Credentials::Providers::MfaSessionCredentials < Dry::Struct 
     | 
|
| 
       30 
30 
     | 
    
         
             
                attribute :persist_session, (Dry::Types["strict.bool"]
         
     | 
| 
       31 
31 
     | 
    
         
             
                    .default(true)
         
     | 
| 
       32 
32 
     | 
    
         
             
                    .constructor { |v| v.nil? ? Dry::Types::Undefined : v })
         
     | 
| 
       33 
     | 
    
         
            -
                attribute :duration_seconds, (Dry::Types["coercible. 
     | 
| 
      
 33 
     | 
    
         
            +
                attribute :duration_seconds, (Dry::Types["coercible.integer"]
         
     | 
| 
       34 
34 
     | 
    
         
             
                    .default(3600)
         
     | 
| 
       35 
35 
     | 
    
         
             
                    .constructor { |v| v.nil? ? Dry::Types::Undefined : v })
         
     | 
| 
       36 
36 
     | 
    
         
             
                attribute :region, AwsAssumeRole::Types::Region
         
     | 
| 
         @@ -11,7 +11,7 @@ class AwsAssumeRole::ProfileConfiguration < Dry::Struct 
     | 
|
| 
       11 
11 
     | 
    
         
             
                attribute :credentials, Dry::Types["object"].optional
         
     | 
| 
       12 
12 
     | 
    
         
             
                attribute :secret_access_key, Dry::Types["strict.string"].optional
         
     | 
| 
       13 
13 
     | 
    
         
             
                attribute :session_token, Dry::Types["strict.string"].optional
         
     | 
| 
       14 
     | 
    
         
            -
                attribute :duration_seconds, Dry::Types["coercible. 
     | 
| 
      
 14 
     | 
    
         
            +
                attribute :duration_seconds, Dry::Types["coercible.integer"].optional
         
     | 
| 
       15 
15 
     | 
    
         
             
                attribute :external_id, Dry::Types["strict.string"].optional
         
     | 
| 
       16 
16 
     | 
    
         
             
                attribute :path, Dry::Types["strict.string"].optional
         
     | 
| 
       17 
17 
     | 
    
         
             
                attribute :persist_session, Dry::Types["strict.bool"].optional.default(true)
         
     | 
| 
         @@ -27,7 +27,7 @@ class AwsAssumeRole::ProfileConfiguration < Dry::Struct 
     | 
|
| 
       27 
27 
     | 
    
         
             
                attribute :shell_type, Dry::Types["strict.string"].optional
         
     | 
| 
       28 
28 
     | 
    
         
             
                attribute :source_profile, Dry::Types["strict.string"].optional
         
     | 
| 
       29 
29 
     | 
    
         
             
                attribute :args, Dry::Types["strict.array"].optional.default([])
         
     | 
| 
       30 
     | 
    
         
            -
                attribute :instance_profile_credentials_retries, Dry::Types["strict. 
     | 
| 
      
 30 
     | 
    
         
            +
                attribute :instance_profile_credentials_retries, Dry::Types["strict.integer"].default(0)
         
     | 
| 
       31 
31 
     | 
    
         
             
                attribute :instance_profile_credentials_timeout, Dry::Types["coercible.float"].default(1.0)
         
     | 
| 
       32 
32 
     | 
    
         | 
| 
       33 
33 
     | 
    
         
             
                attr_writer :credentials
         
     | 
| 
         @@ -7,7 +7,7 @@ class AwsAssumeRole::Runner < Dry::Struct 
     | 
|
| 
       7 
7 
     | 
    
         
             
                include AwsAssumeRole::Logging
         
     | 
| 
       8 
8 
     | 
    
         
             
                attribute :command, Dry::Types["coercible.array"].of(Dry::Types["strict.string"]).default([])
         
     | 
| 
       9 
9 
     | 
    
         
             
                attribute :exit_on_error, Dry::Types["strict.bool"].default(true)
         
     | 
| 
       10 
     | 
    
         
            -
                attribute :expected_exit_code, Dry::Types["strict. 
     | 
| 
      
 10 
     | 
    
         
            +
                attribute :expected_exit_code, Dry::Types["strict.integer"].default(0)
         
     | 
| 
       11 
11 
     | 
    
         
             
                attribute :environment, Dry::Types["strict.hash"].default({})
         
     | 
| 
       12 
12 
     | 
    
         
             
                attribute :credentials, Dry::Types["object"].optional
         
     | 
| 
       13 
13 
     | 
    
         | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: aws_assume_role
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 1.2. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.2.1
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: linux
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Jon Topper
         
     | 
| 
         @@ -15,7 +15,7 @@ authors: 
     | 
|
| 
       15 
15 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       16 
16 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       17 
17 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       18 
     | 
    
         
            -
            date: 2018-06 
     | 
| 
      
 18 
     | 
    
         
            +
            date: 2018-07-06 00:00:00.000000000 Z
         
     | 
| 
       19 
19 
     | 
    
         
             
            dependencies:
         
     | 
| 
       20 
20 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       21 
21 
     | 
    
         
             
              name: activesupport
         
     |