terraspace 1.1.6 → 2.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.cody/all/bin/build.sh +33 -0
- data/.cody/all/buildspec.yml +10 -0
- data/.cody/{aws/role.rb → all/iam_role.rb} +0 -0
- data/.cody/all/project.rb +6 -0
- data/.cody/aws/bin/build.sh +5 -0
- data/.cody/aws/iam_role.rb +6 -0
- data/.cody/aws/project.rb +6 -2
- data/.cody/azurerm/bin/build.sh +5 -0
- data/.cody/azurerm/{role.rb → iam_role.rb} +0 -0
- data/.cody/azurerm/project.rb +5 -3
- data/.cody/google/bin/build.sh +5 -0
- data/.cody/google/{role.rb → iam_role.rb} +0 -0
- data/.cody/google/project.rb +5 -3
- data/.cody/none/bin/build.sh +5 -0
- data/.cody/none/{role.rb → iam_role.rb} +0 -0
- data/.cody/none/project.rb +6 -2
- data/.cody/shared/script/install/terraform.sh +2 -1
- data/.cody/shared/script/update/gemfile.sh +2 -0
- data/.cody/unit/project.rb +2 -2
- data/.gitignore +2 -0
- data/.pipedream/pipeline.rb +4 -3
- data/CHANGELOG.md +30 -0
- data/exe/terraspace +0 -7
- data/lib/templates/base/project/config/app.rb +3 -0
- data/lib/templates/plugin/ci/%gem_name%.gemspec.tt +32 -0
- data/lib/templates/plugin/ci/.gitignore +12 -0
- data/lib/templates/plugin/{.rspec → ci/.rspec} +0 -0
- data/lib/templates/plugin/ci/.rubocop.yml +13 -0
- data/lib/templates/plugin/ci/CHANGELOG.md.tt +5 -0
- data/lib/templates/plugin/ci/Gemfile +10 -0
- data/lib/templates/plugin/ci/LICENSE.txt +21 -0
- data/lib/templates/plugin/ci/README.md.tt +19 -0
- data/lib/templates/plugin/ci/Rakefile +12 -0
- data/lib/templates/plugin/ci/lib/%gem_name%/autoloader.rb.tt +23 -0
- data/lib/templates/plugin/ci/lib/%gem_name%/interface.rb.tt +15 -0
- data/lib/templates/plugin/ci/lib/%gem_name%/pr.rb.tt +15 -0
- data/lib/templates/plugin/ci/lib/%gem_name%/vars.rb.tt +26 -0
- data/lib/templates/plugin/ci/lib/%gem_name%/version.rb.tt +5 -0
- data/lib/templates/plugin/ci/lib/%gem_name%.rb.tt +17 -0
- data/lib/templates/plugin/ci/spec/%gem_name%_spec.rb.tt +7 -0
- data/lib/templates/plugin/ci/spec/spec_helper.rb.tt +15 -0
- data/lib/templates/plugin/{.gitignore → core/.gitignore} +0 -0
- data/lib/templates/plugin/core/.rspec +3 -0
- data/lib/templates/plugin/{CHANGELOG.md → core/CHANGELOG.md} +0 -0
- data/lib/templates/plugin/{Gemfile → core/Gemfile} +0 -0
- data/lib/templates/plugin/{LICENSE.txt → core/LICENSE.txt} +0 -0
- data/lib/templates/plugin/{README.md.tt → core/README.md.tt} +0 -0
- data/lib/templates/plugin/{Rakefile → core/Rakefile} +0 -0
- data/lib/templates/plugin/{bin → core/bin}/console.tt +0 -0
- data/lib/templates/plugin/{bin → core/bin}/setup +0 -0
- data/lib/templates/plugin/{lib → core/lib}/templates/hcl/module/main.tf +0 -0
- data/lib/templates/plugin/{lib → core/lib}/templates/hcl/module/outputs.tf +0 -0
- data/lib/templates/plugin/{lib → core/lib}/templates/hcl/module/variables.tf +0 -0
- data/lib/templates/plugin/{lib → core/lib}/templates/hcl/project/config/terraform/backend.tf.tt +0 -0
- data/lib/templates/plugin/{lib → core/lib}/templates/hcl/project/config/terraform/provider.tf +0 -0
- data/lib/templates/plugin/{lib → core/lib}/templates/hcl/stack/main.tf +0 -0
- data/lib/templates/plugin/{lib → core/lib}/templates/hcl/stack/outputs.tf +0 -0
- data/lib/templates/plugin/{lib → core/lib}/templates/hcl/stack/variables.tf +0 -0
- data/lib/templates/plugin/{lib → core/lib}/templates/ruby/module/main.rb +0 -0
- data/lib/templates/plugin/{lib → core/lib}/templates/ruby/module/outputs.rb +0 -0
- data/lib/templates/plugin/{lib → core/lib}/templates/ruby/module/variables.rb +0 -0
- data/lib/templates/plugin/{lib → core/lib}/templates/ruby/project/config/terraform/backend.rb.tt +0 -0
- data/lib/templates/plugin/{lib → core/lib}/templates/ruby/project/config/terraform/provider.rb +0 -0
- data/lib/templates/plugin/{lib → core/lib}/templates/ruby/stack/main.rb +0 -0
- data/lib/templates/plugin/{lib → core/lib}/templates/ruby/stack/outputs.rb +0 -0
- data/lib/templates/plugin/{lib → core/lib}/templates/ruby/stack/variables.rb +0 -0
- data/lib/templates/plugin/{lib → core/lib}/templates/test/rspec/module/test/.rspec +0 -0
- data/lib/templates/plugin/{lib → core/lib}/templates/test/rspec/module/test/Gemfile +0 -0
- data/lib/templates/plugin/{lib → core/lib}/templates/test/rspec/module/test/spec/fixtures/stack/main.tf +0 -0
- data/lib/templates/plugin/{lib → core/lib}/templates/test/rspec/module/test/spec/fixtures/stack/outputs.tf +0 -0
- data/lib/templates/plugin/{lib → core/lib}/templates/test/rspec/module/test/spec/fixtures/stack/variables.tf +0 -0
- data/lib/templates/plugin/{lib → core/lib}/templates/test/rspec/module/test/spec/main_spec.rb +0 -0
- data/lib/templates/plugin/{lib → core/lib}/templates/test/rspec/module/test/spec/spec_helper.rb +0 -0
- data/lib/templates/plugin/{lib → core/lib}/terraspace_plugin_%name%/autoloader.rb.tt +0 -0
- data/lib/templates/plugin/{lib → core/lib}/terraspace_plugin_%name%/clients.rb.tt +0 -0
- data/lib/templates/plugin/{lib → core/lib}/terraspace_plugin_%name%/interfaces/backend.rb.tt +0 -0
- data/lib/templates/plugin/{lib → core/lib}/terraspace_plugin_%name%/interfaces/config.rb.tt +0 -0
- data/lib/templates/plugin/{lib → core/lib}/terraspace_plugin_%name%/interfaces/expander.rb.tt +0 -0
- data/lib/templates/plugin/{lib → core/lib}/terraspace_plugin_%name%/interfaces/layer.rb.tt +0 -0
- data/lib/templates/plugin/{lib → core/lib}/terraspace_plugin_%name%/version.rb.tt +0 -0
- data/lib/templates/plugin/{lib → core/lib}/terraspace_plugin_%name%.rb.tt +0 -0
- data/lib/templates/plugin/{spec → core/spec}/spec_helper.rb.tt +0 -0
- data/lib/templates/plugin/{spec → core/spec}/terraspace_provider_%name%_spec.rb.tt +0 -0
- data/lib/templates/plugin/{terraspace_plugin_%name%.gemspec.tt → core/terraspace_plugin_%name%.gemspec.tt} +0 -0
- data/lib/terraspace/all/runner.rb +4 -1
- data/lib/terraspace/all/summary.rb +2 -0
- data/lib/terraspace/app.rb +23 -4
- data/lib/terraspace/builder/children.rb +6 -7
- data/lib/terraspace/builder.rb +8 -2
- data/lib/terraspace/cli/concerns/plan_path.rb +8 -0
- data/lib/terraspace/cli/down.rb +4 -0
- data/lib/terraspace/cli/init.rb +1 -1
- data/lib/terraspace/cli/new/ci.rb +121 -0
- data/lib/terraspace/cli/new/example.rb +1 -1
- data/lib/terraspace/cli/new/helpers/plugin_gem.rb +1 -1
- data/lib/terraspace/cli/new/plugin/ci.rb +46 -0
- data/lib/terraspace/cli/new/plugin/core.rb +26 -0
- data/lib/terraspace/cli/new/plugin/helper.rb +4 -1
- data/lib/terraspace/cli/new/plugin.rb +8 -15
- data/lib/terraspace/cli/new/test.rb +1 -1
- data/lib/terraspace/cli/new.rb +17 -13
- data/lib/terraspace/cli/plan.rb +13 -0
- data/lib/terraspace/cli/setup/check.rb +8 -0
- data/lib/terraspace/cli/up.rb +8 -12
- data/lib/terraspace/cli.rb +2 -2
- data/lib/terraspace/cloud/api/cani.rb +30 -0
- data/lib/terraspace/cloud/api/concern/errors.rb +12 -0
- data/lib/terraspace/cloud/api/concern/record.rb +18 -0
- data/lib/terraspace/cloud/api/concern.rb +38 -0
- data/lib/terraspace/cloud/api/http_methods.rb +116 -0
- data/lib/terraspace/cloud/api/validate.rb +24 -0
- data/lib/terraspace/cloud/api.rb +33 -0
- data/lib/terraspace/cloud/base.rb +97 -0
- data/lib/terraspace/cloud/ci/generic.rb +25 -0
- data/lib/terraspace/cloud/ci/manual.rb +81 -0
- data/lib/terraspace/cloud/ci/vcs/base.rb +36 -0
- data/lib/terraspace/cloud/ci/vcs/bitbucket.rb +11 -0
- data/lib/terraspace/cloud/ci/vcs/github.rb +11 -0
- data/lib/terraspace/cloud/ci/vcs/gitlab.rb +11 -0
- data/lib/terraspace/cloud/ci/vcs.rb +18 -0
- data/lib/terraspace/cloud/ci.rb +56 -0
- data/lib/terraspace/cloud/context.rb +14 -0
- data/lib/terraspace/cloud/folder/base.rb +17 -0
- data/lib/terraspace/cloud/folder/package.rb +33 -0
- data/lib/terraspace/cloud/folder/tidy.rb +54 -0
- data/lib/terraspace/cloud/folder/uploader.rb +37 -0
- data/lib/terraspace/cloud/folder.rb +11 -0
- data/lib/terraspace/cloud/plan.rb +47 -0
- data/lib/terraspace/cloud/update.rb +37 -0
- data/lib/terraspace/command.rb +16 -1
- data/lib/terraspace/compiler/dsl/syntax/mod.rb +2 -2
- data/lib/terraspace/compiler/dsl/syntax/tfvar.rb +1 -1
- data/lib/terraspace/compiler/expander/backend.rb +1 -1
- data/lib/terraspace/compiler/expander.rb +1 -1
- data/lib/terraspace/compiler/strategy/tfvar/layer.rb +56 -29
- data/lib/terraspace/core.rb +36 -3
- data/lib/terraspace/ext/core/module.rb +9 -4
- data/lib/terraspace/hooks/builder.rb +1 -1
- data/lib/terraspace/logger.rb +32 -5
- data/lib/terraspace/mod.rb +21 -9
- data/lib/terraspace/plugin/expander/interface.rb +19 -11
- data/lib/terraspace/plugin.rb +14 -5
- data/lib/terraspace/shell.rb +7 -2
- data/lib/terraspace/terraform/args/thor.rb +8 -2
- data/lib/terraspace/terraform/ihooks/after/apply.rb +8 -0
- data/lib/terraspace/terraform/ihooks/after/destroy.rb +8 -0
- data/lib/terraspace/terraform/ihooks/after/plan.rb +31 -2
- data/lib/terraspace/terraform/ihooks/base.rb +7 -3
- data/lib/terraspace/terraform/ihooks/before/apply.rb +8 -0
- data/lib/terraspace/terraform/ihooks/before/destroy.rb +8 -0
- data/lib/terraspace/terraform/ihooks/before/plan.rb +11 -3
- data/lib/terraspace/terraform/runner.rb +19 -5
- data/lib/terraspace/version.rb +1 -1
- data/lib/terraspace.rb +2 -0
- data/terraspace.gemspec +1 -0
- metadata +119 -51
- data/.pipedream/schedule.rb +0 -3
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: terraspace
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tung Nguyen
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-06-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -248,6 +248,20 @@ dependencies:
|
|
248
248
|
- - ">="
|
249
249
|
- !ruby/object:Gem::Version
|
250
250
|
version: '0'
|
251
|
+
- !ruby/object:Gem::Dependency
|
252
|
+
name: zip_folder
|
253
|
+
requirement: !ruby/object:Gem::Requirement
|
254
|
+
requirements:
|
255
|
+
- - ">="
|
256
|
+
- !ruby/object:Gem::Version
|
257
|
+
version: '0'
|
258
|
+
type: :runtime
|
259
|
+
prerelease: false
|
260
|
+
version_requirements: !ruby/object:Gem::Requirement
|
261
|
+
requirements:
|
262
|
+
- - ">="
|
263
|
+
- !ruby/object:Gem::Version
|
264
|
+
version: '0'
|
251
265
|
- !ruby/object:Gem::Dependency
|
252
266
|
name: rspec-terraspace
|
253
267
|
requirement: !ruby/object:Gem::Requirement
|
@@ -341,31 +355,36 @@ extensions: []
|
|
341
355
|
extra_rdoc_files: []
|
342
356
|
files:
|
343
357
|
- ".cody/README.md"
|
358
|
+
- ".cody/all/bin/build.sh"
|
359
|
+
- ".cody/all/buildspec.yml"
|
360
|
+
- ".cody/all/iam_role.rb"
|
361
|
+
- ".cody/all/project.rb"
|
344
362
|
- ".cody/aws/bin/build.sh"
|
345
363
|
- ".cody/aws/buildspec.yml"
|
364
|
+
- ".cody/aws/iam_role.rb"
|
346
365
|
- ".cody/aws/project.rb"
|
347
|
-
- ".cody/aws/role.rb"
|
348
366
|
- ".cody/azurerm/bin/az/configure.sh"
|
349
367
|
- ".cody/azurerm/bin/az/install.sh"
|
350
368
|
- ".cody/azurerm/bin/build.sh"
|
351
369
|
- ".cody/azurerm/bin/install.sh"
|
352
370
|
- ".cody/azurerm/buildspec.yml"
|
371
|
+
- ".cody/azurerm/iam_role.rb"
|
353
372
|
- ".cody/azurerm/project.rb"
|
354
|
-
- ".cody/azurerm/role.rb"
|
355
373
|
- ".cody/google/bin/build.sh"
|
356
374
|
- ".cody/google/bin/gcloud/configure.sh"
|
357
375
|
- ".cody/google/bin/gcloud/install.sh"
|
358
376
|
- ".cody/google/bin/install.sh"
|
359
377
|
- ".cody/google/buildspec.yml"
|
378
|
+
- ".cody/google/iam_role.rb"
|
360
379
|
- ".cody/google/project.rb"
|
361
|
-
- ".cody/google/role.rb"
|
362
380
|
- ".cody/none/bin/build.sh"
|
363
381
|
- ".cody/none/buildspec.yml"
|
382
|
+
- ".cody/none/iam_role.rb"
|
364
383
|
- ".cody/none/project.rb"
|
365
|
-
- ".cody/none/role.rb"
|
366
384
|
- ".cody/shared/script/install.sh"
|
367
385
|
- ".cody/shared/script/install/terraform.sh"
|
368
386
|
- ".cody/shared/script/install/terraspace.sh"
|
387
|
+
- ".cody/shared/script/update/gemfile.sh"
|
369
388
|
- ".cody/unit/bin/build.sh"
|
370
389
|
- ".cody/unit/buildspec.yml"
|
371
390
|
- ".cody/unit/project.rb"
|
@@ -378,7 +397,6 @@ files:
|
|
378
397
|
- ".gitignore"
|
379
398
|
- ".pipedream/README.md"
|
380
399
|
- ".pipedream/pipeline.rb"
|
381
|
-
- ".pipedream/schedule.rb"
|
382
400
|
- ".rspec"
|
383
401
|
- CHANGELOG.md
|
384
402
|
- CONDUCT.md
|
@@ -420,49 +438,66 @@ files:
|
|
420
438
|
- lib/templates/hcl/stack/main.tf
|
421
439
|
- lib/templates/hcl/stack/outputs.tf
|
422
440
|
- lib/templates/hcl/stack/variables.tf
|
423
|
-
- lib/templates/plugin
|
424
|
-
- lib/templates/plugin/.
|
425
|
-
- lib/templates/plugin/
|
426
|
-
- lib/templates/plugin/
|
427
|
-
- lib/templates/plugin/
|
428
|
-
- lib/templates/plugin/
|
429
|
-
- lib/templates/plugin/
|
430
|
-
- lib/templates/plugin/
|
431
|
-
- lib/templates/plugin/
|
432
|
-
- lib/templates/plugin/lib
|
433
|
-
- lib/templates/plugin/lib
|
434
|
-
- lib/templates/plugin/lib
|
435
|
-
- lib/templates/plugin/lib
|
436
|
-
- lib/templates/plugin/lib
|
437
|
-
- lib/templates/plugin/lib
|
438
|
-
- lib/templates/plugin/
|
439
|
-
- lib/templates/plugin/
|
440
|
-
- lib/templates/plugin/
|
441
|
-
- lib/templates/plugin/
|
442
|
-
- lib/templates/plugin/
|
443
|
-
- lib/templates/plugin/
|
444
|
-
- lib/templates/plugin/
|
445
|
-
- lib/templates/plugin/
|
446
|
-
- lib/templates/plugin/
|
447
|
-
- lib/templates/plugin/
|
448
|
-
- lib/templates/plugin/
|
449
|
-
- lib/templates/plugin/lib/templates/
|
450
|
-
- lib/templates/plugin/lib/templates/
|
451
|
-
- lib/templates/plugin/lib/templates/
|
452
|
-
- lib/templates/plugin/lib/templates/
|
453
|
-
- lib/templates/plugin/lib/templates/
|
454
|
-
- lib/templates/plugin/lib/templates/
|
455
|
-
- lib/templates/plugin/lib/
|
456
|
-
- lib/templates/plugin/lib/
|
457
|
-
- lib/templates/plugin/lib/
|
458
|
-
- lib/templates/plugin/lib/
|
459
|
-
- lib/templates/plugin/lib/
|
460
|
-
- lib/templates/plugin/lib/
|
461
|
-
- lib/templates/plugin/lib/
|
462
|
-
- lib/templates/plugin/lib/
|
463
|
-
- lib/templates/plugin/
|
464
|
-
- lib/templates/plugin/
|
465
|
-
- lib/templates/plugin/
|
441
|
+
- lib/templates/plugin/ci/%gem_name%.gemspec.tt
|
442
|
+
- lib/templates/plugin/ci/.gitignore
|
443
|
+
- lib/templates/plugin/ci/.rspec
|
444
|
+
- lib/templates/plugin/ci/.rubocop.yml
|
445
|
+
- lib/templates/plugin/ci/CHANGELOG.md.tt
|
446
|
+
- lib/templates/plugin/ci/Gemfile
|
447
|
+
- lib/templates/plugin/ci/LICENSE.txt
|
448
|
+
- lib/templates/plugin/ci/README.md.tt
|
449
|
+
- lib/templates/plugin/ci/Rakefile
|
450
|
+
- lib/templates/plugin/ci/lib/%gem_name%.rb.tt
|
451
|
+
- lib/templates/plugin/ci/lib/%gem_name%/autoloader.rb.tt
|
452
|
+
- lib/templates/plugin/ci/lib/%gem_name%/interface.rb.tt
|
453
|
+
- lib/templates/plugin/ci/lib/%gem_name%/pr.rb.tt
|
454
|
+
- lib/templates/plugin/ci/lib/%gem_name%/vars.rb.tt
|
455
|
+
- lib/templates/plugin/ci/lib/%gem_name%/version.rb.tt
|
456
|
+
- lib/templates/plugin/ci/spec/%gem_name%_spec.rb.tt
|
457
|
+
- lib/templates/plugin/ci/spec/spec_helper.rb.tt
|
458
|
+
- lib/templates/plugin/core/.gitignore
|
459
|
+
- lib/templates/plugin/core/.rspec
|
460
|
+
- lib/templates/plugin/core/CHANGELOG.md
|
461
|
+
- lib/templates/plugin/core/Gemfile
|
462
|
+
- lib/templates/plugin/core/LICENSE.txt
|
463
|
+
- lib/templates/plugin/core/README.md.tt
|
464
|
+
- lib/templates/plugin/core/Rakefile
|
465
|
+
- lib/templates/plugin/core/bin/console.tt
|
466
|
+
- lib/templates/plugin/core/bin/setup
|
467
|
+
- lib/templates/plugin/core/lib/templates/hcl/module/main.tf
|
468
|
+
- lib/templates/plugin/core/lib/templates/hcl/module/outputs.tf
|
469
|
+
- lib/templates/plugin/core/lib/templates/hcl/module/variables.tf
|
470
|
+
- lib/templates/plugin/core/lib/templates/hcl/project/config/terraform/backend.tf.tt
|
471
|
+
- lib/templates/plugin/core/lib/templates/hcl/project/config/terraform/provider.tf
|
472
|
+
- lib/templates/plugin/core/lib/templates/hcl/stack/main.tf
|
473
|
+
- lib/templates/plugin/core/lib/templates/hcl/stack/outputs.tf
|
474
|
+
- lib/templates/plugin/core/lib/templates/hcl/stack/variables.tf
|
475
|
+
- lib/templates/plugin/core/lib/templates/ruby/module/main.rb
|
476
|
+
- lib/templates/plugin/core/lib/templates/ruby/module/outputs.rb
|
477
|
+
- lib/templates/plugin/core/lib/templates/ruby/module/variables.rb
|
478
|
+
- lib/templates/plugin/core/lib/templates/ruby/project/config/terraform/backend.rb.tt
|
479
|
+
- lib/templates/plugin/core/lib/templates/ruby/project/config/terraform/provider.rb
|
480
|
+
- lib/templates/plugin/core/lib/templates/ruby/stack/main.rb
|
481
|
+
- lib/templates/plugin/core/lib/templates/ruby/stack/outputs.rb
|
482
|
+
- lib/templates/plugin/core/lib/templates/ruby/stack/variables.rb
|
483
|
+
- lib/templates/plugin/core/lib/templates/test/rspec/module/test/.rspec
|
484
|
+
- lib/templates/plugin/core/lib/templates/test/rspec/module/test/Gemfile
|
485
|
+
- lib/templates/plugin/core/lib/templates/test/rspec/module/test/spec/fixtures/stack/main.tf
|
486
|
+
- lib/templates/plugin/core/lib/templates/test/rspec/module/test/spec/fixtures/stack/outputs.tf
|
487
|
+
- lib/templates/plugin/core/lib/templates/test/rspec/module/test/spec/fixtures/stack/variables.tf
|
488
|
+
- lib/templates/plugin/core/lib/templates/test/rspec/module/test/spec/main_spec.rb
|
489
|
+
- lib/templates/plugin/core/lib/templates/test/rspec/module/test/spec/spec_helper.rb
|
490
|
+
- lib/templates/plugin/core/lib/terraspace_plugin_%name%.rb.tt
|
491
|
+
- lib/templates/plugin/core/lib/terraspace_plugin_%name%/autoloader.rb.tt
|
492
|
+
- lib/templates/plugin/core/lib/terraspace_plugin_%name%/clients.rb.tt
|
493
|
+
- lib/templates/plugin/core/lib/terraspace_plugin_%name%/interfaces/backend.rb.tt
|
494
|
+
- lib/templates/plugin/core/lib/terraspace_plugin_%name%/interfaces/config.rb.tt
|
495
|
+
- lib/templates/plugin/core/lib/terraspace_plugin_%name%/interfaces/expander.rb.tt
|
496
|
+
- lib/templates/plugin/core/lib/terraspace_plugin_%name%/interfaces/layer.rb.tt
|
497
|
+
- lib/templates/plugin/core/lib/terraspace_plugin_%name%/version.rb.tt
|
498
|
+
- lib/templates/plugin/core/spec/spec_helper.rb.tt
|
499
|
+
- lib/templates/plugin/core/spec/terraspace_provider_%name%_spec.rb.tt
|
500
|
+
- lib/templates/plugin/core/terraspace_plugin_%name%.gemspec.tt
|
466
501
|
- lib/templates/ruby/module/main.rb
|
467
502
|
- lib/templates/ruby/module/outputs.rb
|
468
503
|
- lib/templates/ruby/module/variables.rb
|
@@ -507,6 +542,7 @@ files:
|
|
507
542
|
- lib/terraspace/cli/completer/script.rb
|
508
543
|
- lib/terraspace/cli/completer/script.sh
|
509
544
|
- lib/terraspace/cli/concern.rb
|
545
|
+
- lib/terraspace/cli/concerns/plan_path.rb
|
510
546
|
- lib/terraspace/cli/concerns/source_dirs.rb
|
511
547
|
- lib/terraspace/cli/down.rb
|
512
548
|
- lib/terraspace/cli/fmt.rb
|
@@ -574,6 +610,7 @@ files:
|
|
574
610
|
- lib/terraspace/cli/logs/concern.rb
|
575
611
|
- lib/terraspace/cli/new.rb
|
576
612
|
- lib/terraspace/cli/new/arg.rb
|
613
|
+
- lib/terraspace/cli/new/ci.rb
|
577
614
|
- lib/terraspace/cli/new/example.rb
|
578
615
|
- lib/terraspace/cli/new/git_hook.rb
|
579
616
|
- lib/terraspace/cli/new/helper.rb
|
@@ -582,6 +619,8 @@ files:
|
|
582
619
|
- lib/terraspace/cli/new/hook.rb
|
583
620
|
- lib/terraspace/cli/new/module.rb
|
584
621
|
- lib/terraspace/cli/new/plugin.rb
|
622
|
+
- lib/terraspace/cli/new/plugin/ci.rb
|
623
|
+
- lib/terraspace/cli/new/plugin/core.rb
|
585
624
|
- lib/terraspace/cli/new/plugin/helper.rb
|
586
625
|
- lib/terraspace/cli/new/project.rb
|
587
626
|
- lib/terraspace/cli/new/sequence.rb
|
@@ -591,6 +630,7 @@ files:
|
|
591
630
|
- lib/terraspace/cli/new/source/test.rb
|
592
631
|
- lib/terraspace/cli/new/stack.rb
|
593
632
|
- lib/terraspace/cli/new/test.rb
|
633
|
+
- lib/terraspace/cli/plan.rb
|
594
634
|
- lib/terraspace/cli/seed.rb
|
595
635
|
- lib/terraspace/cli/setup.rb
|
596
636
|
- lib/terraspace/cli/setup/check.rb
|
@@ -601,6 +641,30 @@ files:
|
|
601
641
|
- lib/terraspace/cli/tfc/runs.rb
|
602
642
|
- lib/terraspace/cli/tfc_concern.rb
|
603
643
|
- lib/terraspace/cli/up.rb
|
644
|
+
- lib/terraspace/cloud/api.rb
|
645
|
+
- lib/terraspace/cloud/api/cani.rb
|
646
|
+
- lib/terraspace/cloud/api/concern.rb
|
647
|
+
- lib/terraspace/cloud/api/concern/errors.rb
|
648
|
+
- lib/terraspace/cloud/api/concern/record.rb
|
649
|
+
- lib/terraspace/cloud/api/http_methods.rb
|
650
|
+
- lib/terraspace/cloud/api/validate.rb
|
651
|
+
- lib/terraspace/cloud/base.rb
|
652
|
+
- lib/terraspace/cloud/ci.rb
|
653
|
+
- lib/terraspace/cloud/ci/generic.rb
|
654
|
+
- lib/terraspace/cloud/ci/manual.rb
|
655
|
+
- lib/terraspace/cloud/ci/vcs.rb
|
656
|
+
- lib/terraspace/cloud/ci/vcs/base.rb
|
657
|
+
- lib/terraspace/cloud/ci/vcs/bitbucket.rb
|
658
|
+
- lib/terraspace/cloud/ci/vcs/github.rb
|
659
|
+
- lib/terraspace/cloud/ci/vcs/gitlab.rb
|
660
|
+
- lib/terraspace/cloud/context.rb
|
661
|
+
- lib/terraspace/cloud/folder.rb
|
662
|
+
- lib/terraspace/cloud/folder/base.rb
|
663
|
+
- lib/terraspace/cloud/folder/package.rb
|
664
|
+
- lib/terraspace/cloud/folder/tidy.rb
|
665
|
+
- lib/terraspace/cloud/folder/uploader.rb
|
666
|
+
- lib/terraspace/cloud/plan.rb
|
667
|
+
- lib/terraspace/cloud/update.rb
|
604
668
|
- lib/terraspace/command.rb
|
605
669
|
- lib/terraspace/compiler/basename.rb
|
606
670
|
- lib/terraspace/compiler/cleaner.rb
|
@@ -709,8 +773,12 @@ files:
|
|
709
773
|
- lib/terraspace/terraform/args/pass.rb
|
710
774
|
- lib/terraspace/terraform/args/shorthands.rb
|
711
775
|
- lib/terraspace/terraform/args/thor.rb
|
776
|
+
- lib/terraspace/terraform/ihooks/after/apply.rb
|
777
|
+
- lib/terraspace/terraform/ihooks/after/destroy.rb
|
712
778
|
- lib/terraspace/terraform/ihooks/after/plan.rb
|
713
779
|
- lib/terraspace/terraform/ihooks/base.rb
|
780
|
+
- lib/terraspace/terraform/ihooks/before/apply.rb
|
781
|
+
- lib/terraspace/terraform/ihooks/before/destroy.rb
|
714
782
|
- lib/terraspace/terraform/ihooks/before/plan.rb
|
715
783
|
- lib/terraspace/terraform/remote_state/fetcher.rb
|
716
784
|
- lib/terraspace/terraform/remote_state/marker/output.rb
|
@@ -889,7 +957,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
889
957
|
- !ruby/object:Gem::Version
|
890
958
|
version: '0'
|
891
959
|
requirements: []
|
892
|
-
rubygems_version: 3.
|
960
|
+
rubygems_version: 3.3.12
|
893
961
|
signing_key:
|
894
962
|
specification_version: 4
|
895
963
|
summary: 'Terraspace: The Terraspace Framework'
|
data/.pipedream/schedule.rb
DELETED