terraspace_plugin_azurerm 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9e19cd746bce18ab10dbb8a93822e4c4788c82fa4af05435d4b8379cb3d70c2a
4
- data.tar.gz: 3fecf314fbf470aca4d3154ac97ef5c5e60313b88cd65d3f7b47a4739066908d
3
+ metadata.gz: b3ff4bc13ad8e73d40b985420c107ef791d652bde858092271a239715ec6b824
4
+ data.tar.gz: cdbc5ddac31c0c4fad5676ea802810fd9982f02a59f3347bf72d4e407f7abec7
5
5
  SHA512:
6
- metadata.gz: 37c699c0fef8eaed8d1ead25d06ecd4269079d57cd6523d7273a3a45660033b448d46173642298cf282e54f6ef4bfab3de2d808dce81bc91bfe5898c201b13d4
7
- data.tar.gz: 92007fd05e2820ec8a9ef4c58691775c6541fca66241f56d140cb33cc4cdec572ebf76eb72d122e88c018b1db45b24c00e0574214a77e5746e903e3ae83c1360
6
+ metadata.gz: 878dc0469567622cd0bf3ef0c378ae5ba9962035511110fdb057892873d0d4e67cf0e00c2173cc52904ea9d2a58d7c2062b1bac8673a8dd45c03bb946e220149
7
+ data.tar.gz: f9f776fc7ad11500b9f29c57a141012b883295f59e25c67d7393d07a6dde2aadaf71f7e2322848bdf67ba5feaebce3553c49a4004632e83f9fc5026b965278bf
@@ -3,6 +3,9 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  This project *loosely tries* to adhere to [Semantic Versioning](http://semver.org/).
5
5
 
6
+ ## [0.2.2]
7
+ - #3 fix test template
8
+
6
9
  ## [0.2.1]
7
10
  - set prefix to @folder for performance improvement
8
11
 
@@ -0,0 +1,4 @@
1
+ Terraspace.configure do |config|
2
+ config.logger.level = :info
3
+ config.test_framework = "rspec"
4
+ end
@@ -8,6 +8,7 @@ describe "main" do
8
8
  stacks: "app/stacks", # include all stacks in this folder
9
9
  # override demo stack tfvars for testing
10
10
  # copied over to test harness' app/stacks/demo/tfvars/test.tfvars
11
+ # need for azure
11
12
  tfvars: {demo: "spec/fixtures/tfvars/demo.tfvars"},
12
13
  config: "spec/fixtures/config",
13
14
  )
@@ -18,9 +19,6 @@ describe "main" do
18
19
  end
19
20
 
20
21
  it "successful deploy" do
21
- # Replace with your actual test
22
- expect(true).to be true
23
- # Example
24
22
  storage_account_id = terraspace.output("demo", "storage_account_id")
25
23
  expect(storage_account_id).to include("sa") # starts with sa
26
24
  end
@@ -1,3 +1,3 @@
1
1
  module TerraspacePluginAzurerm
2
- VERSION = "0.2.1"
2
+ VERSION = "0.2.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: terraspace_plugin_azurerm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen
@@ -134,6 +134,7 @@ files:
134
134
  - lib/templates/test/rspec/module/test/spec/fixtures/stack/variables.tf
135
135
  - lib/templates/test/rspec/module/test/spec/main_spec.rb.tt
136
136
  - lib/templates/test/rspec/module/test/spec/spec_helper.rb
137
+ - lib/templates/test/rspec/project/spec/fixtures/config/app.rb
137
138
  - lib/templates/test/rspec/project/spec/fixtures/config/terraform/provider.tf
138
139
  - lib/templates/test/rspec/project/spec/fixtures/tfvars/demo.tfvars
139
140
  - lib/templates/test/rspec/project/spec/spec_helper.rb