cem_acpt 0.9.5 → 0.10.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a3caeca8eefaa722fb3f2b126570d888cec011b7ef7c97850219486b646db49a
4
- data.tar.gz: 4075e373ba284d3c3863570a44d7f76f80ffa43eef6af68acf7b2f96d7199b8b
3
+ metadata.gz: 30359a7c4857015ae1524de545a65a1d1fcc5857dbee54cc14b803f9b5d22fa0
4
+ data.tar.gz: 74a005af6ca3e0ade1fa052a7d83e0ea4946737405bd479a3c8a7794ba4e7dda
5
5
  SHA512:
6
- metadata.gz: 45ec95cf86daa94b407d08b72abd0e256dd15473e3ac7025f8fa1f6e413b396a3487f7442101c4802ffda35d8e0cd80c77561b010f5b3e8b5a31841472258605
7
- data.tar.gz: 81a26af76dab53b8c53a758044b292da98165c95c8c1be7194c26d023ace94696bfc40a3b402f8c302812191d83c3e060c7884a1ec9fa89a8327ab358091a37e
6
+ metadata.gz: 22e01c0ba28bb9bd8e1d743c201985a4f107b10358c4526488555bf5e5784a6717140f89cfb7ea6858c6bad3b817150a5ba5eafb3afeca0e773ee0c6d4e18763
7
+ data.tar.gz: ee3575925179f6bbbfef88f2f1b20ce3a88e99150610ecb3eb6936eb3147fb7d283435ba3c579a12ab4e023372546538a9eb3b1dbe1be679462cba10c162609e
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cem_acpt (0.9.5)
4
+ cem_acpt (0.10.0)
5
5
  async-http (>= 0.60, < 0.70)
6
6
  bcrypt_pbkdf (>= 1.0, < 2.0)
7
7
  deep_merge (>= 1.2, < 2.0)
@@ -188,7 +188,7 @@ module CemAcpt
188
188
  @run_data[:nodes] = new_node_data
189
189
  logger.verbose('CemAcpt::TestRunner') { "Initial run data:\n#{@run_data}" }
190
190
  logger.info('CemAcpt::TestRunner') { 'Created initial run data...' }
191
- setup_bolt
191
+ setup_bolt if CemAcpt::Actions.config.action_names.include?('bolt')
192
192
  end
193
193
 
194
194
  def setup_bolt
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CemAcpt
4
- VERSION = '0.9.5'
4
+ VERSION = '0.10.0'
5
5
  end
@@ -1,8 +1,8 @@
1
1
  terraform {
2
2
  required_providers {
3
- google = {
4
- source = "hashicorp/google"
5
- version = "4.59.0"
3
+ google-beta = {
4
+ source = "hashicorp/google-beta"
5
+ version = "5.23.0"
6
6
  }
7
7
  }
8
8
  }
@@ -1,8 +1,8 @@
1
1
  terraform {
2
2
  required_providers {
3
- google = {
4
- source = "hashicorp/google"
5
- version = "4.59.0"
3
+ google-beta = {
4
+ source = "hashicorp/google-beta"
5
+ version = "5.23.0"
6
6
  }
7
7
  }
8
8
  }
@@ -1,8 +1,8 @@
1
1
  terraform {
2
2
  required_providers {
3
- google = {
4
- source = "hashicorp/google"
5
- version = "4.59.0"
3
+ google-beta = {
4
+ source = "hashicorp/google-beta"
5
+ version = "5.23.0"
6
6
  }
7
7
  }
8
8
  }
@@ -50,7 +50,7 @@ variable "node_data" {
50
50
  }))
51
51
  }
52
52
 
53
- provider "google" {
53
+ provider "google-beta" {
54
54
  credentials = file(var.credentials_file)
55
55
  project = var.project
56
56
  region = var.region
@@ -58,7 +58,7 @@ provider "google" {
58
58
  }
59
59
 
60
60
  resource "google_compute_instance" "acpt-test-node" {
61
- provider = google
61
+ provider = google-beta
62
62
  for_each = var.node_data
63
63
  name = each.key
64
64
  machine_type = each.value.machine_type
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cem_acpt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.5
4
+ version: 0.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - puppetlabs
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-03-26 00:00:00.000000000 Z
11
+ date: 2024-04-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: async-http
@@ -313,7 +313,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
313
313
  - !ruby/object:Gem::Version
314
314
  version: '0'
315
315
  requirements: []
316
- rubygems_version: 3.4.22
316
+ rubygems_version: 3.4.19
317
317
  signing_key:
318
318
  specification_version: 4
319
319
  summary: CEM Acceptance Tests