inspec 4.22.1 → 4.23.11
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/Gemfile +2 -1
- data/inspec.gemspec +1 -1
- data/lib/plugins/inspec-init/templates/profiles/aws/README.md +1 -1
- data/lib/resource_support/aws/aws_resource_mixin.rb +1 -1
- data/lib/resources/aws/aws_ebs_volume.rb +1 -1
- data/lib/resources/aws/aws_ec2_instance.rb +1 -1
- data/lib/resources/aws/aws_iam_password_policy.rb +1 -1
- data/lib/resources/aws/aws_iam_policy.rb +1 -1
- data/lib/resources/aws/aws_iam_root_user.rb +1 -1
- data/lib/resources/aws/aws_security_group.rb +1 -1
- metadata +12 -6
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 1d2d2579fa5f0f7cd001179665c925508c24bba2f5f10da0352fa199ac6bb87d
         | 
| 4 | 
            +
              data.tar.gz: 6633740cfc2bc8638bee17f92fa8315fd9f911e18b1570c640bb191baca0f949
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 4d197751f26f4c8a0039fc8762eafc4d42796b0b2031580e49c490769b257f58563156fc6db76fd4c78da174f726d317e85e9401572745cdfe6f518a9fc237d1
         | 
| 7 | 
            +
              data.tar.gz: 8ce6ce9d880f04c3a2f5498754ad8e467f93e96f8d2d22d82596080c0e886bb9918340522fb3deb170f0dd215e46c64b7a9ce24ecb8d6f95adcb35a426d0d1fe
         | 
    
        data/Gemfile
    CHANGED
    
    | @@ -19,12 +19,13 @@ group :omnibus do | |
| 19 19 | 
             
            end
         | 
| 20 20 |  | 
| 21 21 | 
             
            group :test do
         | 
| 22 | 
            -
              gem "chefstyle", "~>  | 
| 22 | 
            +
              gem "chefstyle", "~> 1.2.1"
         | 
| 23 23 | 
             
              gem "minitest", "~> 5.5"
         | 
| 24 24 | 
             
              gem "minitest-sprint", "~> 1.0"
         | 
| 25 25 | 
             
              gem "rake", ">= 10"
         | 
| 26 26 | 
             
              gem "simplecov", ["~> 0.10", "<=0.18.2"]
         | 
| 27 27 | 
             
              gem "concurrent-ruby", "~> 1.0"
         | 
| 28 | 
            +
              gem "nokogiri", "~> 1.9"
         | 
| 28 29 | 
             
              gem "mocha", "~> 1.1"
         | 
| 29 30 | 
             
              gem "ruby-progressbar", "~> 1.8"
         | 
| 30 31 | 
             
              gem "webmock", "~> 3.0"
         | 
    
        data/inspec.gemspec
    CHANGED
    
    | @@ -27,7 +27,7 @@ Gem::Specification.new do |spec| | |
| 27 27 | 
             
              spec.add_dependency "train", "~> 3.0"
         | 
| 28 28 |  | 
| 29 29 | 
             
              # Used for Azure profile until integrated into train
         | 
| 30 | 
            -
              spec.add_dependency "faraday_middleware", " | 
| 30 | 
            +
              spec.add_dependency "faraday_middleware", ">= 0.12.2", "< 1.1"
         | 
| 31 31 |  | 
| 32 32 | 
             
              # Train plugins we ship with InSpec
         | 
| 33 33 | 
             
              spec.add_dependency "train-habitat", "~> 0.1"
         | 
| @@ -26,7 +26,7 @@ Creating new profile at /Users/spaterson/my-profile | |
| 26 26 | 
             
            aws_vpc_id: 'custom-vpc-id'
         | 
| 27 27 | 
             
            ```
         | 
| 28 28 |  | 
| 29 | 
            -
            The related control will simply be skipped if this is not provided.  See the [InSpec DSL documentation](https:// | 
| 29 | 
            +
            The related control will simply be skipped if this is not provided.  See the [InSpec DSL documentation](https://docs.chef.io/inspec/dsl_inspec/) for more details on conditional execution using `only_if`.
         | 
| 30 30 |  | 
| 31 31 | 
             
            ## Run the tests
         | 
| 32 32 |  | 
| @@ -61,7 +61,7 @@ module AwsResourceMixin | |
| 61 61 | 
             
              rescue Aws::Errors::MissingCredentialsError
         | 
| 62 62 | 
             
                # The AWS error here is unhelpful:
         | 
| 63 63 | 
             
                # "unable to sign request without credentials set"
         | 
| 64 | 
            -
                Inspec::Log.error "It appears that you have not set your AWS credentials.  You may set them using environment variables, or using the 'aws://region/aws_credentials_profile' target.  See https:// | 
| 64 | 
            +
                Inspec::Log.error "It appears that you have not set your AWS credentials.  You may set them using environment variables, or using the 'aws://region/aws_credentials_profile' target.  See https://docs.chef.io/inspec/platforms/ for details."
         | 
| 65 65 | 
             
                fail_resource("No AWS credentials available")
         | 
| 66 66 | 
             
              rescue Aws::Errors::ServiceError => e
         | 
| 67 67 | 
             
                fail_resource e.message
         | 
| @@ -34,7 +34,7 @@ class AwsEbsVolume < Inspec.resource(1) | |
| 34 34 | 
             
              rescue Aws::Errors::MissingCredentialsError
         | 
| 35 35 | 
             
                # The AWS error here is unhelpful:
         | 
| 36 36 | 
             
                # "unable to sign request without credentials set"
         | 
| 37 | 
            -
                Inspec::Log.error "It appears that you have not set your AWS credentials. You may set them using environment variables, or using the 'aws://region/aws_credentials_profile' target. See https:// | 
| 37 | 
            +
                Inspec::Log.error "It appears that you have not set your AWS credentials. You may set them using environment variables, or using the 'aws://region/aws_credentials_profile' target. See https://docs.chef.io/inspec/platforms/ for details."
         | 
| 38 38 | 
             
                fail_resource("No AWS credentials available")
         | 
| 39 39 | 
             
              rescue Aws::Errors::ServiceError => e
         | 
| 40 40 | 
             
                fail_resource(e.message)
         | 
| @@ -35,7 +35,7 @@ class AwsEc2Instance < Inspec.resource(1) | |
| 35 35 | 
             
              rescue Aws::Errors::MissingCredentialsError
         | 
| 36 36 | 
             
                # The AWS error here is unhelpful:
         | 
| 37 37 | 
             
                # "unable to sign request without credentials set"
         | 
| 38 | 
            -
                Inspec::Log.error "It appears that you have not set your AWS credentials.  You may set them using environment variables, or using the 'aws://region/aws_credentials_profile' target.  See https:// | 
| 38 | 
            +
                Inspec::Log.error "It appears that you have not set your AWS credentials.  You may set them using environment variables, or using the 'aws://region/aws_credentials_profile' target.  See https://docs.chef.io/inspec/platforms/ for details."
         | 
| 39 39 | 
             
                fail_resource("No AWS credentials available")
         | 
| 40 40 | 
             
              rescue Aws::Errors::ServiceError => e
         | 
| 41 41 | 
             
                fail_resource e.message
         | 
| @@ -43,7 +43,7 @@ class AwsIamPasswordPolicy < Inspec.resource(1) | |
| 43 43 | 
             
              rescue Aws::Errors::MissingCredentialsError
         | 
| 44 44 | 
             
                # The AWS error here is unhelpful:
         | 
| 45 45 | 
             
                # "unable to sign request without credentials set"
         | 
| 46 | 
            -
                Inspec::Log.error "It appears that you have not set your AWS credentials.  You may set them using environment variables, or using the 'aws://region/aws_credentials_profile' target.  See https:// | 
| 46 | 
            +
                Inspec::Log.error "It appears that you have not set your AWS credentials.  You may set them using environment variables, or using the 'aws://region/aws_credentials_profile' target.  See https://docs.chef.io/inspec/platforms/ for details."
         | 
| 47 47 | 
             
                fail_resource("No AWS credentials available")
         | 
| 48 48 | 
             
              rescue Aws::Errors::ServiceError => e
         | 
| 49 49 | 
             
                fail_resource e.message
         | 
| @@ -24,7 +24,7 @@ class AwsIamRootUser < Inspec.resource(1) | |
| 24 24 | 
             
              rescue Aws::Errors::MissingCredentialsError
         | 
| 25 25 | 
             
                # The AWS error here is unhelpful:
         | 
| 26 26 | 
             
                # "unable to sign request without credentials set"
         | 
| 27 | 
            -
                Inspec::Log.error "It appears that you have not set your AWS credentials.  You may set them using environment variables, or using the 'aws://region/aws_credentials_profile' target.  See https:// | 
| 27 | 
            +
                Inspec::Log.error "It appears that you have not set your AWS credentials.  You may set them using environment variables, or using the 'aws://region/aws_credentials_profile' target.  See https://docs.chef.io/inspec/platforms/ for details."
         | 
| 28 28 | 
             
                fail_resource("No AWS credentials available")
         | 
| 29 29 | 
             
              rescue Aws::Errors::ServiceError => e
         | 
| 30 30 | 
             
                fail_resource e.message
         | 
| @@ -292,7 +292,7 @@ class AwsSecurityGroup < Inspec.resource(1) | |
| 292 292 |  | 
| 293 293 | 
             
                @exists = true
         | 
| 294 294 | 
             
                @description = dsg_response.security_groups[0].description
         | 
| 295 | 
            -
                @group_id | 
| 295 | 
            +
                @group_id = dsg_response.security_groups[0].group_id
         | 
| 296 296 | 
             
                @group_name = dsg_response.security_groups[0].group_name
         | 
| 297 297 | 
             
                @vpc_id     = dsg_response.security_groups[0].vpc_id
         | 
| 298 298 | 
             
                @inbound_rules = dsg_response.security_groups[0].ip_permissions.map(&:to_h)
         | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: inspec
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 4. | 
| 4 | 
            +
              version: 4.23.11
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Chef InSpec Team
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2020- | 
| 11 | 
            +
            date: 2020-09-25 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: inspec-core
         | 
| @@ -16,14 +16,14 @@ dependencies: | |
| 16 16 | 
             
                requirements:
         | 
| 17 17 | 
             
                - - '='
         | 
| 18 18 | 
             
                  - !ruby/object:Gem::Version
         | 
| 19 | 
            -
                    version: 4. | 
| 19 | 
            +
                    version: 4.23.11
         | 
| 20 20 | 
             
              type: :runtime
         | 
| 21 21 | 
             
              prerelease: false
         | 
| 22 22 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 23 23 | 
             
                requirements:
         | 
| 24 24 | 
             
                - - '='
         | 
| 25 25 | 
             
                  - !ruby/object:Gem::Version
         | 
| 26 | 
            -
                    version: 4. | 
| 26 | 
            +
                    version: 4.23.11
         | 
| 27 27 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 28 28 | 
             
              name: train
         | 
| 29 29 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| @@ -42,16 +42,22 @@ dependencies: | |
| 42 42 | 
             
              name: faraday_middleware
         | 
| 43 43 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 44 44 | 
             
                requirements:
         | 
| 45 | 
            -
                - - " | 
| 45 | 
            +
                - - ">="
         | 
| 46 46 | 
             
                  - !ruby/object:Gem::Version
         | 
| 47 47 | 
             
                    version: 0.12.2
         | 
| 48 | 
            +
                - - "<"
         | 
| 49 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 50 | 
            +
                    version: '1.1'
         | 
| 48 51 | 
             
              type: :runtime
         | 
| 49 52 | 
             
              prerelease: false
         | 
| 50 53 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 51 54 | 
             
                requirements:
         | 
| 52 | 
            -
                - - " | 
| 55 | 
            +
                - - ">="
         | 
| 53 56 | 
             
                  - !ruby/object:Gem::Version
         | 
| 54 57 | 
             
                    version: 0.12.2
         | 
| 58 | 
            +
                - - "<"
         | 
| 59 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 60 | 
            +
                    version: '1.1'
         | 
| 55 61 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 56 62 | 
             
              name: train-habitat
         | 
| 57 63 | 
             
              requirement: !ruby/object:Gem::Requirement
         |