terraspace 0.0.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.cody/README.md +25 -0
- data/.cody/aws/bin/build.sh +13 -0
- data/.cody/aws/buildspec.yml +10 -0
- data/.cody/aws/project.rb +2 -0
- data/.cody/aws/role.rb +6 -0
- data/.cody/azurerm/bin/az/configure.sh +23 -0
- data/.cody/azurerm/bin/az/install.sh +17 -0
- data/.cody/azurerm/bin/build.sh +20 -0
- data/.cody/azurerm/bin/install.sh +6 -0
- data/.cody/azurerm/buildspec.yml +11 -0
- data/.cody/azurerm/project.rb +2 -0
- data/.cody/azurerm/role.rb +5 -0
- data/.cody/google/bin/build.sh +17 -0
- data/.cody/google/bin/gcloud/configure.sh +15 -0
- data/.cody/google/bin/gcloud/install.sh +18 -0
- data/.cody/google/bin/install.sh +6 -0
- data/.cody/google/buildspec.yml +11 -0
- data/.cody/google/project.rb +2 -0
- data/.cody/google/role.rb +5 -0
- data/.cody/shared/script/install.sh +6 -0
- data/.cody/shared/script/install/terraform.sh +11 -0
- data/.cody/shared/script/install/terraspace.sh +72 -0
- data/.cody/unit/bin/build.sh +4 -0
- data/.cody/unit/buildspec.yml +9 -0
- data/.cody/unit/project.rb +2 -0
- data/.github/ISSUE_TEMPLATE.md +7 -0
- data/.github/ISSUE_TEMPLATE/bug_report.md +84 -0
- data/.github/ISSUE_TEMPLATE/documentation.md +12 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +64 -0
- data/.github/ISSUE_TEMPLATE/question.md +14 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +50 -0
- data/.gitignore +18 -9
- data/.pipedream/README.md +25 -0
- data/.pipedream/pipeline.rb +17 -0
- data/.pipedream/schedule.rb +3 -0
- data/.rspec +2 -2
- data/CHANGELOG.md +37 -0
- data/CONDUCT.md +1 -0
- data/CONTRIBUTING.md +1 -0
- data/Gemfile +1 -4
- data/Guardfile +19 -0
- data/LICENSE.txt +201 -21
- data/README.md +62 -27
- data/Rakefile +10 -2
- data/exe/terraspace +14 -0
- data/lib/templates/base/git_hook/hook.sh +5 -0
- data/lib/templates/base/project/.gitignore +33 -0
- data/lib/templates/base/project/Gemfile.tt +9 -0
- data/lib/templates/base/project/Terrafile +14 -0
- data/lib/templates/base/project/config/app.rb +4 -0
- data/lib/templates/base/shim/terraspace +7 -0
- data/lib/templates/hcl/module/main.tf +1 -0
- data/lib/templates/hcl/module/outputs.tf +1 -0
- data/lib/templates/hcl/module/variables.tf +1 -0
- data/lib/templates/hcl/project/config/terraform/backend.tf.tt +18 -0
- data/lib/templates/hcl/project/config/terraform/provider.tf +16 -0
- data/lib/templates/hcl/stack/main.tf +1 -0
- data/lib/templates/hcl/stack/outputs.tf +1 -0
- data/lib/templates/hcl/stack/variables.tf +1 -0
- data/lib/templates/plugin/.gitignore +12 -0
- data/lib/templates/plugin/.rspec +3 -0
- data/lib/templates/plugin/CHANGELOG.md +7 -0
- data/lib/templates/plugin/Gemfile +7 -0
- data/lib/templates/plugin/LICENSE.txt +201 -0
- data/lib/templates/plugin/README.md.tt +34 -0
- data/lib/templates/plugin/Rakefile +6 -0
- data/{bin/console → lib/templates/plugin/bin/console.tt} +1 -1
- data/{bin → lib/templates/plugin/bin}/setup +0 -0
- data/lib/templates/plugin/lib/templates/hcl/module/main.tf +1 -0
- data/lib/templates/plugin/lib/templates/hcl/module/outputs.tf +1 -0
- data/lib/templates/plugin/lib/templates/hcl/module/variables.tf +1 -0
- data/lib/templates/plugin/lib/templates/hcl/project/config/terraform/backend.tf.tt +6 -0
- data/lib/templates/plugin/lib/templates/hcl/project/config/terraform/provider.tf +3 -0
- data/lib/templates/plugin/lib/templates/hcl/stack/main.tf +1 -0
- data/lib/templates/plugin/lib/templates/hcl/stack/outputs.tf +1 -0
- data/lib/templates/plugin/lib/templates/hcl/stack/variables.tf +1 -0
- data/lib/templates/plugin/lib/templates/ruby/module/main.rb +1 -0
- data/lib/templates/plugin/lib/templates/ruby/module/outputs.rb +1 -0
- data/lib/templates/plugin/lib/templates/ruby/module/variables.rb +1 -0
- data/lib/templates/plugin/lib/templates/ruby/project/config/terraform/backend.rb.tt +4 -0
- data/lib/templates/plugin/lib/templates/ruby/project/config/terraform/provider.rb +3 -0
- data/lib/templates/plugin/lib/templates/ruby/stack/main.rb +1 -0
- data/lib/templates/plugin/lib/templates/ruby/stack/outputs.rb +1 -0
- data/lib/templates/plugin/lib/templates/ruby/stack/variables.rb +1 -0
- data/lib/templates/plugin/lib/templates/test/rspec/module/test/.rspec +3 -0
- data/lib/templates/plugin/lib/templates/test/rspec/module/test/Gemfile +9 -0
- data/lib/templates/plugin/lib/templates/test/rspec/module/test/spec/fixtures/stack/main.tf +1 -0
- data/lib/templates/plugin/lib/templates/test/rspec/module/test/spec/fixtures/stack/outputs.tf +1 -0
- data/lib/templates/plugin/lib/templates/test/rspec/module/test/spec/fixtures/stack/variables.tf +1 -0
- data/lib/templates/plugin/lib/templates/test/rspec/module/test/spec/main_spec.rb +29 -0
- data/lib/templates/plugin/lib/templates/test/rspec/module/test/spec/spec_helper.rb +13 -0
- data/lib/templates/plugin/lib/terraspace_plugin_%name%.rb.tt +36 -0
- data/lib/templates/plugin/lib/terraspace_plugin_%name%/autoloader.rb.tt +23 -0
- data/lib/templates/plugin/lib/terraspace_plugin_%name%/clients.rb.tt +14 -0
- data/lib/templates/plugin/lib/terraspace_plugin_%name%/interfaces/backend.rb.tt +12 -0
- data/lib/templates/plugin/lib/terraspace_plugin_%name%/interfaces/config.rb.tt +18 -0
- data/lib/templates/plugin/lib/terraspace_plugin_%name%/interfaces/expander.rb.tt +15 -0
- data/lib/templates/plugin/lib/terraspace_plugin_%name%/interfaces/layer.rb.tt +20 -0
- data/lib/templates/plugin/lib/terraspace_plugin_%name%/version.rb.tt +3 -0
- data/lib/templates/plugin/spec/spec_helper.rb.tt +14 -0
- data/lib/templates/plugin/spec/terraspace_provider_%name%_spec.rb.tt +5 -0
- data/lib/templates/plugin/terraspace_plugin_%name%.gemspec.tt +27 -0
- data/lib/templates/ruby/module/main.rb +1 -0
- data/lib/templates/ruby/module/outputs.rb +1 -0
- data/lib/templates/ruby/module/variables.rb +1 -0
- data/lib/templates/ruby/project/config/terraform/backend.rb.tt +9 -0
- data/lib/templates/ruby/project/config/terraform/provider.rb +7 -0
- data/lib/templates/ruby/stack/main.rb +1 -0
- data/lib/templates/ruby/stack/outputs.rb +1 -0
- data/lib/templates/ruby/stack/variables.rb +1 -0
- data/lib/terraspace.rb +22 -1
- data/lib/terraspace/app.rb +36 -0
- data/lib/terraspace/app/hooks.rb +18 -0
- data/lib/terraspace/autoloader.rb +25 -0
- data/lib/terraspace/booter.rb +19 -0
- data/lib/terraspace/builder.rb +43 -0
- data/lib/terraspace/bundle.rb +54 -0
- data/lib/terraspace/cli.rb +202 -0
- data/lib/terraspace/cli/base.rb +11 -0
- data/lib/terraspace/cli/build/placeholder.rb +40 -0
- data/lib/terraspace/cli/bundle.rb +28 -0
- data/lib/terraspace/cli/check_setup.rb +73 -0
- data/lib/terraspace/cli/clean.rb +12 -0
- data/lib/terraspace/cli/cloud.rb +24 -0
- data/lib/terraspace/cli/commander.rb +21 -0
- data/lib/terraspace/cli/help.rb +11 -0
- data/lib/terraspace/cli/help/bundle.md +14 -0
- data/lib/terraspace/cli/help/completion.md +20 -0
- data/lib/terraspace/cli/help/completion_script.md +3 -0
- data/lib/terraspace/cli/help/update.md +5 -0
- data/lib/terraspace/cli/info.rb +30 -0
- data/lib/terraspace/cli/init.rb +67 -0
- data/lib/terraspace/cli/list.rb +13 -0
- data/lib/terraspace/cli/new.rb +40 -0
- data/lib/terraspace/cli/new/git_hook.rb +33 -0
- data/lib/terraspace/cli/new/helper.rb +15 -0
- data/lib/terraspace/cli/new/helper/plugin_gem.rb +12 -0
- data/lib/terraspace/cli/new/module.rb +26 -0
- data/lib/terraspace/cli/new/plugin.rb +20 -0
- data/lib/terraspace/cli/new/plugin/helper.rb +15 -0
- data/lib/terraspace/cli/new/project.rb +110 -0
- data/lib/terraspace/cli/new/sequence.rb +59 -0
- data/lib/terraspace/cli/new/shim.rb +58 -0
- data/lib/terraspace/cli/new/source/core.rb +63 -0
- data/lib/terraspace/cli/new/source/plugin.rb +20 -0
- data/lib/terraspace/cli/new/source/test.rb +26 -0
- data/lib/terraspace/cli/new/stack.rb +26 -0
- data/lib/terraspace/cli/new/test/base.rb +17 -0
- data/lib/terraspace/cli/new/test/bootstrap.rb +18 -0
- data/lib/terraspace/cli/new/test/module.rb +15 -0
- data/lib/terraspace/cli/new/test/project.rb +15 -0
- data/lib/terraspace/cli/seed.rb +9 -0
- data/lib/terraspace/cli/summary.rb +58 -0
- data/lib/terraspace/cli/test.rb +35 -0
- data/lib/terraspace/command.rb +100 -0
- data/lib/terraspace/compiler/backend.rb +38 -0
- data/lib/terraspace/compiler/backend/parser.rb +42 -0
- data/lib/terraspace/compiler/basename.rb +10 -0
- data/lib/terraspace/compiler/builder.rb +78 -0
- data/lib/terraspace/compiler/cleaner.rb +63 -0
- data/lib/terraspace/compiler/cleaner/backend_change.rb +45 -0
- data/lib/terraspace/compiler/dsl/base.rb +12 -0
- data/lib/terraspace/compiler/dsl/meta/local.rb +7 -0
- data/lib/terraspace/compiler/dsl/meta/var.rb +7 -0
- data/lib/terraspace/compiler/dsl/mod.rb +19 -0
- data/lib/terraspace/compiler/dsl/syntax/helpers/common.rb +28 -0
- data/lib/terraspace/compiler/dsl/syntax/mod.rb +7 -0
- data/lib/terraspace/compiler/dsl/syntax/mod/backend.rb +31 -0
- data/lib/terraspace/compiler/dsl/syntax/mod/data.rb +9 -0
- data/lib/terraspace/compiler/dsl/syntax/mod/locals.rb +7 -0
- data/lib/terraspace/compiler/dsl/syntax/mod/module.rb +10 -0
- data/lib/terraspace/compiler/dsl/syntax/mod/output.rb +8 -0
- data/lib/terraspace/compiler/dsl/syntax/mod/provider.rb +8 -0
- data/lib/terraspace/compiler/dsl/syntax/mod/resource.rb +24 -0
- data/lib/terraspace/compiler/dsl/syntax/mod/terraform.rb +8 -0
- data/lib/terraspace/compiler/dsl/syntax/mod/variable.rb +12 -0
- data/lib/terraspace/compiler/dsl/syntax/tfvar.rb +5 -0
- data/lib/terraspace/compiler/dsl/syntax/tfvar/common.rb +7 -0
- data/lib/terraspace/compiler/dsl/tfvars.rb +29 -0
- data/lib/terraspace/compiler/erb/context.rb +11 -0
- data/lib/terraspace/compiler/erb/render.rb +12 -0
- data/lib/terraspace/compiler/expander.rb +46 -0
- data/lib/terraspace/compiler/strategy/abstract_base.rb +7 -0
- data/lib/terraspace/compiler/strategy/mod.rb +15 -0
- data/lib/terraspace/compiler/strategy/mod/base.rb +4 -0
- data/lib/terraspace/compiler/strategy/mod/pass.rb +7 -0
- data/lib/terraspace/compiler/strategy/mod/rb.rb +7 -0
- data/lib/terraspace/compiler/strategy/mod/tf.rb +7 -0
- data/lib/terraspace/compiler/strategy/tfvar.rb +42 -0
- data/lib/terraspace/compiler/strategy/tfvar/base.rb +4 -0
- data/lib/terraspace/compiler/strategy/tfvar/layer.rb +110 -0
- data/lib/terraspace/compiler/strategy/tfvar/rb.rb +7 -0
- data/lib/terraspace/compiler/strategy/tfvar/tfvars.rb +7 -0
- data/lib/terraspace/compiler/writer.rb +36 -0
- data/lib/terraspace/completer.rb +159 -0
- data/lib/terraspace/completer/script.rb +6 -0
- data/lib/terraspace/completer/script.sh +10 -0
- data/lib/terraspace/core.rb +52 -0
- data/lib/terraspace/ext.rb +2 -0
- data/lib/terraspace/ext/bundler.rb +7 -0
- data/lib/terraspace/ext/core/module.rb +19 -0
- data/lib/terraspace/logger.rb +26 -0
- data/lib/terraspace/mod.rb +125 -0
- data/lib/terraspace/mod/remote.rb +18 -0
- data/lib/terraspace/plugin.rb +73 -0
- data/lib/terraspace/plugin/backend/interface.rb +8 -0
- data/lib/terraspace/plugin/config/interface.rb +27 -0
- data/lib/terraspace/plugin/decorator/interface.rb +8 -0
- data/lib/terraspace/plugin/expander/generic.rb +5 -0
- data/lib/terraspace/plugin/expander/interface.rb +95 -0
- data/lib/terraspace/plugin/finder.rb +45 -0
- data/lib/terraspace/plugin/infer_provider.rb +15 -0
- data/lib/terraspace/plugin/layer/interface.rb +5 -0
- data/lib/terraspace/plugin/meta.rb +29 -0
- data/lib/terraspace/plugin/summary/interface.rb +130 -0
- data/lib/terraspace/seeder.rb +66 -0
- data/lib/terraspace/seeder/actions.rb +24 -0
- data/lib/terraspace/seeder/content.rb +84 -0
- data/lib/terraspace/seeder/where.rb +30 -0
- data/lib/terraspace/terraform/api.rb +53 -0
- data/lib/terraspace/terraform/api/client.rb +10 -0
- data/lib/terraspace/terraform/api/http.rb +106 -0
- data/lib/terraspace/terraform/api/var.rb +72 -0
- data/lib/terraspace/terraform/api/vars.rb +38 -0
- data/lib/terraspace/terraform/api/vars/base.rb +7 -0
- data/lib/terraspace/terraform/api/vars/json.rb +14 -0
- data/lib/terraspace/terraform/api/vars/rb.rb +21 -0
- data/lib/terraspace/terraform/args/custom.rb +47 -0
- data/lib/terraspace/terraform/args/default.rb +110 -0
- data/lib/terraspace/terraform/args/dsl.rb +30 -0
- data/lib/terraspace/terraform/args/shorthands.rb +47 -0
- data/lib/terraspace/terraform/cloud.rb +25 -0
- data/lib/terraspace/terraform/cloud/workspace.rb +95 -0
- data/lib/terraspace/terraform/hooks/builder.rb +40 -0
- data/lib/terraspace/terraform/hooks/dsl.rb +19 -0
- data/lib/terraspace/terraform/runner.rb +77 -0
- data/lib/terraspace/tester.rb +29 -0
- data/lib/terraspace/tester/finder.rb +25 -0
- data/lib/terraspace/tester/meta.rb +25 -0
- data/lib/terraspace/util.rb +13 -0
- data/lib/terraspace/util/logging.rb +7 -0
- data/lib/terraspace/util/sh.rb +19 -0
- data/lib/terraspace/util/sure.rb +22 -0
- data/lib/terraspace/version.rb +1 -1
- data/spec/cli_spec.rb +13 -0
- data/spec/fixtures/cache_dir/variables.tf +9 -0
- data/spec/fixtures/initialized/modules.json +29 -0
- data/spec/fixtures/orphans/config/backend.rb +8 -0
- data/spec/fixtures/orphans/config/provider.rb +3 -0
- data/spec/fixtures/orphans/config/providers_different.rb +6 -0
- data/spec/fixtures/orphans/config/providers_same.rb +16 -0
- data/spec/fixtures/orphans/data/aws_ami.rb +8 -0
- data/spec/fixtures/orphans/data/aws_instance.rb +16 -0
- data/spec/fixtures/orphans/locals/forum.rb +4 -0
- data/spec/fixtures/orphans/locals/qux.rb +7 -0
- data/spec/fixtures/orphans/module/core/main.rb +5 -0
- data/spec/fixtures/orphans/resource/security_group/hash_example.rb +18 -0
- data/spec/fixtures/orphans/resource/vpc/count_example.rb +7 -0
- data/spec/fixtures/orphans/terraform/terraform.rb +3 -0
- data/spec/fixtures/projects/hcl/aws/app/modules/instance/main.tf +30 -0
- data/spec/fixtures/projects/hcl/aws/app/modules/instance/variables.tf +7 -0
- data/spec/fixtures/projects/hcl/aws/app/modules/vpc/file.txt +1 -0
- data/spec/fixtures/projects/hcl/aws/app/modules/vpc/main.tf +7 -0
- data/spec/fixtures/projects/hcl/aws/app/modules/vpc/variables.tf +11 -0
- data/spec/fixtures/projects/hcl/aws/app/stacks/core/main.tf +3 -0
- data/spec/fixtures/projects/hcl/aws/app/stacks/monolith/main.tf +3 -0
- data/spec/fixtures/projects/hcl/aws/config/backend.tf +9 -0
- data/spec/fixtures/projects/hcl/aws/config/provider.tf +3 -0
- data/spec/fixtures/projects/hcl/google/app/modules/vpc/main.tf +4 -0
- data/spec/fixtures/projects/hcl/google/app/modules/vpc/outputs.tf +4 -0
- data/spec/fixtures/projects/hcl/google/app/modules/vpc/variables.tf +5 -0
- data/spec/fixtures/projects/hcl/google/config/backend.tf +6 -0
- data/spec/fixtures/projects/hcl/google/config/provider.tf +0 -0
- data/spec/fixtures/projects/ruby/aws/app/modules/existing_backend/backend.rb +7 -0
- data/spec/fixtures/projects/ruby/aws/app/modules/existing_backend/main.rb +7 -0
- data/spec/fixtures/projects/ruby/aws/app/modules/existing_backend/outputs.rb +4 -0
- data/spec/fixtures/projects/ruby/aws/app/modules/existing_backend/variables.rb +9 -0
- data/spec/fixtures/projects/ruby/aws/app/modules/instance/main.rb +28 -0
- data/spec/fixtures/projects/ruby/aws/app/modules/instance/outputs.rb +3 -0
- data/spec/fixtures/projects/ruby/aws/app/modules/instance/variables.rb +7 -0
- data/spec/fixtures/projects/ruby/aws/app/modules/security_group/main.rb +16 -0
- data/spec/fixtures/projects/ruby/aws/app/modules/security_group/variables.rb +5 -0
- data/spec/fixtures/projects/ruby/aws/app/modules/sg_child/main.rb +7 -0
- data/spec/fixtures/projects/ruby/aws/app/modules/sg_child/variables.rb +5 -0
- data/spec/fixtures/projects/ruby/aws/app/modules/sg_parent/main.rb +14 -0
- data/spec/fixtures/projects/ruby/aws/app/modules/sg_parent/variables.rb +3 -0
- data/spec/fixtures/projects/ruby/aws/app/modules/vpc/main.rb +7 -0
- data/spec/fixtures/projects/ruby/aws/app/modules/vpc/outputs.rb +4 -0
- data/spec/fixtures/projects/ruby/aws/app/modules/vpc/variables.rb +9 -0
- data/spec/fixtures/projects/ruby/aws/app/modules/wordpress/main.rb +0 -0
- data/spec/fixtures/projects/ruby/aws/app/stacks/core/a.tfvars +0 -0
- data/spec/fixtures/projects/ruby/aws/app/stacks/core/b.tfvars +1 -0
- data/spec/fixtures/projects/ruby/aws/app/stacks/core/main.rb +6 -0
- data/spec/fixtures/projects/ruby/aws/app/stacks/core/outputs.rb +4 -0
- data/spec/fixtures/projects/ruby/aws/app/stacks/core/variables.rb +2 -0
- data/spec/fixtures/projects/ruby/aws/app/stacks/gke/main.rb +0 -0
- data/spec/fixtures/projects/ruby/aws/app/stacks/monolith/main.rb +3 -0
- data/spec/fixtures/projects/ruby/aws/app/stacks/nested/main.rb +5 -0
- data/spec/fixtures/projects/ruby/aws/config/backend.rb +7 -0
- data/spec/fixtures/projects/ruby/aws/config/cli/args.rb +11 -0
- data/spec/fixtures/projects/ruby/aws/config/cli/hooks.rb +8 -0
- data/spec/fixtures/projects/ruby/aws/config/provider.rb +3 -0
- data/spec/fixtures/projects/ruby/aws/seed/tfvars/modules/instance/base.rb +1 -0
- data/spec/fixtures/projects/ruby/aws/seed/tfvars/modules/instance/dev.rb +1 -0
- data/spec/fixtures/projects/ruby/aws/seed/tfvars/modules/instance/prod.rb +0 -0
- data/spec/fixtures/projects/ruby/aws/seed/tfvars/modules/security_group/base.rb +1 -0
- data/spec/fixtures/projects/ruby/aws/seed/tfvars/modules/security_group/dev.rb +1 -0
- data/spec/fixtures/projects/ruby/aws/seed/tfvars/modules/vpc/base.tfvars +2 -0
- data/spec/fixtures/projects/ruby/aws/seed/tfvars/modules/vpc/dev.tfvars +1 -0
- data/spec/fixtures/projects/ruby/aws/seed/tfvars/modules/vpc/prod.tfvars +1 -0
- data/spec/fixtures/projects/ruby/aws/seed/tfvars/stacks/core/base.rb +4 -0
- data/spec/fixtures/projects/ruby/aws/seed/tfvars/stacks/core/dev.rb +1 -0
- data/spec/fixtures/projects/ruby/aws/seed/tfvars/stacks/core/prod.rb +1 -0
- data/spec/fixtures/projects/ruby/aws/vendor/modules/vpc/main.rb +7 -0
- data/spec/fixtures/projects/ruby/aws/vendor/modules/vpc/outputs.rb +4 -0
- data/spec/fixtures/projects/ruby/aws/vendor/modules/vpc/variables.rb +9 -0
- data/spec/fixtures/projects/ruby/google/app/modules/firewall/main.rb +17 -0
- data/spec/fixtures/projects/ruby/google/app/modules/network/main.rb +4 -0
- data/spec/fixtures/projects/ruby/google/app/modules/vm-simple/main.rb +28 -0
- data/spec/fixtures/projects/ruby/google/app/modules/vm/main.rb +32 -0
- data/spec/fixtures/projects/ruby/google/app/modules/vm/outputs.rb +3 -0
- data/spec/fixtures/projects/ruby/google/app/modules/vm/variables.rb +19 -0
- data/spec/fixtures/projects/ruby/google/app/stacks/core/main.rb +5 -0
- data/spec/fixtures/projects/ruby/google/config/backend.rb +4 -0
- data/spec/fixtures/projects/ruby/google/config/provider.rb +14 -0
- data/spec/fixtures/terraform/args/multiple.rb +4 -0
- data/spec/fixtures/terraform/args/single.rb +10 -0
- data/spec/fixtures/terraform/hooks/multiple.rb +3 -0
- data/spec/fixtures/terraform/hooks/single.rb +7 -0
- data/spec/spec_helper.rb +32 -0
- data/spec/terraspace/compiler/dsl/backend_spec.rb +33 -0
- data/spec/terraspace/compiler/dsl/data_spec.rb +30 -0
- data/spec/terraspace/compiler/dsl/locals_spec.rb +44 -0
- data/spec/terraspace/compiler/dsl/meta/local_spec.rb +10 -0
- data/spec/terraspace/compiler/dsl/meta/var_spec.rb +10 -0
- data/spec/terraspace/compiler/dsl/module_spec.rb +14 -0
- data/spec/terraspace/compiler/dsl/monolith_spec.rb +23 -0
- data/spec/terraspace/compiler/dsl/output_spec.rb +22 -0
- data/spec/terraspace/compiler/dsl/provider_spec.rb +72 -0
- data/spec/terraspace/compiler/dsl/resource/security_group_spec.rb +43 -0
- data/spec/terraspace/compiler/dsl/resource_spec.rb +64 -0
- data/spec/terraspace/compiler/dsl/terraform_spec.rb +21 -0
- data/spec/terraspace/compiler/dsl/variable_spec.rb +28 -0
- data/spec/terraspace/provider/expander/generic_spec.rb +30 -0
- data/spec/terraspace/seeder/content_spec.rb +49 -0
- data/spec/terraspace/seeder_spec.rb +20 -0
- data/spec/terraspace/terraform/args/custom_spec.rb +48 -0
- data/spec/terraspace/terraform/hooks/builder_spec.rb +35 -0
- data/terraspace.gemspec +32 -15
- metadata +721 -14
- data/.travis.yml +0 -6
@@ -0,0 +1,14 @@
|
|
1
|
+
describe Terraspace::Compiler::Dsl::Mod do
|
2
|
+
let(:builder) { described_class.new(mod, path) }
|
3
|
+
let(:mod) { Terraspace::Mod.new("core") }
|
4
|
+
|
5
|
+
context "core" do
|
6
|
+
let(:path) { fixture("orphans/module/core/main.rb") }
|
7
|
+
it "evaluate" do
|
8
|
+
result = builder.build
|
9
|
+
# json =<<~EOL.strip
|
10
|
+
# EOL
|
11
|
+
# expect(result).to eq(json)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
describe Terraspace::Compiler::Dsl::Mod do
|
2
|
+
let(:builder) { described_class.new(mod, path) }
|
3
|
+
let(:mod) { Terraspace::Mod.new("mono") }
|
4
|
+
|
5
|
+
context "vpc" do
|
6
|
+
let(:path) { fixture("projects/ruby/aws/app/stacks/monolith/main.rb") }
|
7
|
+
it "evaluate" do
|
8
|
+
result = builder.build
|
9
|
+
json =<<~EOL.strip
|
10
|
+
{
|
11
|
+
"resource": {
|
12
|
+
"aws_vpc": {
|
13
|
+
"vpc": {
|
14
|
+
"cidr_block": "10.20.0.0/16"
|
15
|
+
}
|
16
|
+
}
|
17
|
+
}
|
18
|
+
}
|
19
|
+
EOL
|
20
|
+
expect(result).to eq(json)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
describe Terraspace::Compiler::Dsl::Mod do
|
2
|
+
let(:builder) { described_class.new(mod, path) }
|
3
|
+
let(:mod) { Terraspace::Mod.new("vpc") }
|
4
|
+
|
5
|
+
context "vpc" do
|
6
|
+
let(:path) { fixture("projects/ruby/aws/app/modules/vpc/outputs.rb") }
|
7
|
+
it "evaluate" do
|
8
|
+
result = builder.build
|
9
|
+
json =<<~EOL.strip
|
10
|
+
{
|
11
|
+
"output": {
|
12
|
+
"vpc_arn": {
|
13
|
+
"description": "VPC arn",
|
14
|
+
"value": "${aws_vpc.vpc.arn}"
|
15
|
+
}
|
16
|
+
}
|
17
|
+
}
|
18
|
+
EOL
|
19
|
+
expect(result).to eq(json)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,72 @@
|
|
1
|
+
describe Terraspace::Compiler::Dsl::Mod do
|
2
|
+
let(:builder) { described_class.new(mod, path) }
|
3
|
+
let(:mod) { Terraspace::Mod.new("vpc") }
|
4
|
+
|
5
|
+
context "single provider" do
|
6
|
+
let(:path) { fixture("orphans/config/provider.rb") }
|
7
|
+
it "evaluate" do
|
8
|
+
result = builder.build
|
9
|
+
json =<<~EOL.strip
|
10
|
+
{
|
11
|
+
"provider": [
|
12
|
+
{
|
13
|
+
"aws": {
|
14
|
+
"region": "us-west-2"
|
15
|
+
}
|
16
|
+
}
|
17
|
+
]
|
18
|
+
}
|
19
|
+
EOL
|
20
|
+
expect(result).to eq(json)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
context "multiple different provider" do
|
25
|
+
let(:path) { fixture("orphans/config/providers_different.rb") }
|
26
|
+
it "evaluate" do
|
27
|
+
result = builder.build
|
28
|
+
json =<<~EOL.strip
|
29
|
+
{
|
30
|
+
"provider": [
|
31
|
+
{
|
32
|
+
"aws": {
|
33
|
+
"region": "us-west-2"
|
34
|
+
}
|
35
|
+
},
|
36
|
+
{
|
37
|
+
"google": {
|
38
|
+
"region": "us-central1"
|
39
|
+
}
|
40
|
+
}
|
41
|
+
]
|
42
|
+
}
|
43
|
+
EOL
|
44
|
+
expect(result).to eq(json)
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
context "multiple same provider with aliases" do
|
49
|
+
let(:path) { fixture("orphans/config/providers_same.rb") }
|
50
|
+
it "evaluate" do
|
51
|
+
result = builder.build
|
52
|
+
json =<<~EOL.strip
|
53
|
+
{
|
54
|
+
"provider": [
|
55
|
+
{
|
56
|
+
"aws": {
|
57
|
+
"region": "eu-west-1"
|
58
|
+
}
|
59
|
+
},
|
60
|
+
{
|
61
|
+
"aws": {
|
62
|
+
"alias": "eu-central-1",
|
63
|
+
"region": "eu-central-1"
|
64
|
+
}
|
65
|
+
}
|
66
|
+
]
|
67
|
+
}
|
68
|
+
EOL
|
69
|
+
expect(result).to eq(json)
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
describe Terraspace::Compiler::Dsl::Mod do
|
2
|
+
let(:builder) { described_class.new(mod, path) }
|
3
|
+
let(:mod) { Terraspace::Mod.new("vpc") }
|
4
|
+
|
5
|
+
context "security_group with hash ingress" do
|
6
|
+
let(:path) { fixture("orphans/resource/security_group/hash_example.rb") }
|
7
|
+
it "adds null for required props" do
|
8
|
+
result = builder.build
|
9
|
+
json =<<~EOL.strip
|
10
|
+
{
|
11
|
+
"resource": {
|
12
|
+
"aws_security_group": {
|
13
|
+
"demo-sg": {
|
14
|
+
"name": "${var.name}",
|
15
|
+
"description": "Demo Security Group",
|
16
|
+
"vpc_id": "${var.vpc_id}",
|
17
|
+
"ingress": [
|
18
|
+
{
|
19
|
+
"description": "TLS from VPC",
|
20
|
+
"from_port": 443,
|
21
|
+
"to_port": 443,
|
22
|
+
"protocol": "tcp",
|
23
|
+
"cidr_blocks": [
|
24
|
+
"0.0.0.0/0"
|
25
|
+
],
|
26
|
+
"ipv6_cidr_blocks": null,
|
27
|
+
"prefix_list_ids": null,
|
28
|
+
"security_groups": null,
|
29
|
+
"self": null
|
30
|
+
}
|
31
|
+
],
|
32
|
+
"tags": {
|
33
|
+
"Name": "${var.name}"
|
34
|
+
}
|
35
|
+
}
|
36
|
+
}
|
37
|
+
}
|
38
|
+
}
|
39
|
+
EOL
|
40
|
+
expect(result).to eq(json)
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,64 @@
|
|
1
|
+
describe Terraspace::Compiler::Dsl::Mod do
|
2
|
+
let(:builder) { described_class.new(mod, path) }
|
3
|
+
let(:mod) { Terraspace::Mod.new("vpc") }
|
4
|
+
|
5
|
+
context "vpc" do
|
6
|
+
let(:path) { fixture("projects/ruby/aws/app/modules/vpc/main.rb") }
|
7
|
+
it "evaluate" do
|
8
|
+
result = builder.build
|
9
|
+
json =<<~EOL.strip
|
10
|
+
{
|
11
|
+
"resource": {
|
12
|
+
"aws_vpc": {
|
13
|
+
"vpc": {
|
14
|
+
"cidr_block": "${var.cidr_block}",
|
15
|
+
"tags": {
|
16
|
+
"Name": "${var.name}"
|
17
|
+
}
|
18
|
+
}
|
19
|
+
}
|
20
|
+
}
|
21
|
+
}
|
22
|
+
EOL
|
23
|
+
expect(result).to eq(json)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
context "security_group" do
|
28
|
+
let(:path) { fixture("projects/ruby/aws/app/modules/security_group/main.rb") }
|
29
|
+
it "adds null for required props" do
|
30
|
+
result = builder.build
|
31
|
+
json =<<~EOL.strip
|
32
|
+
{
|
33
|
+
"resource": {
|
34
|
+
"aws_security_group": {
|
35
|
+
"demo-sg": {
|
36
|
+
"name": "${var.name}",
|
37
|
+
"description": "Demo Security Group",
|
38
|
+
"ingress": [
|
39
|
+
{
|
40
|
+
"description": "TLS from VPC",
|
41
|
+
"from_port": 443,
|
42
|
+
"to_port": 443,
|
43
|
+
"protocol": "tcp",
|
44
|
+
"cidr_blocks": [
|
45
|
+
"0.0.0.0/0"
|
46
|
+
],
|
47
|
+
"ipv6_cidr_blocks": null,
|
48
|
+
"prefix_list_ids": null,
|
49
|
+
"security_groups": null,
|
50
|
+
"self": null
|
51
|
+
}
|
52
|
+
],
|
53
|
+
"tags": {
|
54
|
+
"Name": "${var.name}"
|
55
|
+
}
|
56
|
+
}
|
57
|
+
}
|
58
|
+
}
|
59
|
+
}
|
60
|
+
EOL
|
61
|
+
expect(result).to eq(json)
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
describe Terraspace::Compiler::Dsl::Mod do
|
2
|
+
let(:builder) { described_class.new(mod, path) }
|
3
|
+
let(:mod) { Terraspace::Mod.new("terraform") }
|
4
|
+
|
5
|
+
context "forum" do
|
6
|
+
let(:path) { fixture("orphans/terraform/terraform.rb") }
|
7
|
+
it "evaluate" do
|
8
|
+
result = builder.build
|
9
|
+
json =<<~EOL.strip
|
10
|
+
{
|
11
|
+
"terraform": {
|
12
|
+
"required_providers": {
|
13
|
+
"aws": ">= 2.7.0"
|
14
|
+
}
|
15
|
+
}
|
16
|
+
}
|
17
|
+
EOL
|
18
|
+
expect(result).to eq(json)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
describe Terraspace::Compiler::Dsl::Mod do
|
2
|
+
let(:builder) { described_class.new(mod, path) }
|
3
|
+
let(:mod) { Terraspace::Mod.new("vpc") }
|
4
|
+
|
5
|
+
context "vpc" do
|
6
|
+
let(:path) { fixture("projects/ruby/aws/app/modules/vpc/variables.rb") }
|
7
|
+
it "evaluate" do
|
8
|
+
result = builder.build
|
9
|
+
json =<<~EOL.strip
|
10
|
+
{
|
11
|
+
"variable": {
|
12
|
+
"cidr_block": {
|
13
|
+
"type": "string",
|
14
|
+
"default": "10.90.0.0/16",
|
15
|
+
"description": "cidr block"
|
16
|
+
},
|
17
|
+
"name": {
|
18
|
+
"type": "string",
|
19
|
+
"description": "vpc name",
|
20
|
+
"default": "demo-vpc"
|
21
|
+
}
|
22
|
+
}
|
23
|
+
}
|
24
|
+
EOL
|
25
|
+
expect(result).to eq(json)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
describe Terraspace::Plugin::Expander::Generic do
|
2
|
+
let(:expander) { described_class.new(mod) }
|
3
|
+
let(:props) do
|
4
|
+
{
|
5
|
+
bucket: "my-bucket",
|
6
|
+
key: ":env/:build_dir/terraform.tfstate", # variable notation expanded by terraspace
|
7
|
+
region: "us-west-2",
|
8
|
+
encrypt: true,
|
9
|
+
dynamodb_table: "terraform_locks"
|
10
|
+
}
|
11
|
+
end
|
12
|
+
let(:mod) do
|
13
|
+
mod = double(:mod).as_null_object
|
14
|
+
allow(mod).to receive(:build_dir).and_return("stacks/core")
|
15
|
+
mod
|
16
|
+
end
|
17
|
+
|
18
|
+
context "default path" do
|
19
|
+
it "expand" do
|
20
|
+
result = expander.expand(props)
|
21
|
+
expect(result).to eq({
|
22
|
+
bucket: "my-bucket",
|
23
|
+
key: "dev/stacks/core/terraform.tfstate",
|
24
|
+
region: "us-west-2",
|
25
|
+
encrypt: true,
|
26
|
+
dynamodb_table: "terraform_locks"
|
27
|
+
})
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
describe Terraspace::Seeder::Content do
|
2
|
+
let(:content) { described_class.new(parsed) }
|
3
|
+
|
4
|
+
context "basic examples" do
|
5
|
+
let(:parsed) do
|
6
|
+
{
|
7
|
+
"variable"=>{
|
8
|
+
"project"=>{"default"=>"project-name"},
|
9
|
+
"name"=>{"type"=>"string"},
|
10
|
+
}
|
11
|
+
}
|
12
|
+
end
|
13
|
+
|
14
|
+
it "required_vars" do
|
15
|
+
result = content.required_vars
|
16
|
+
expect(result).to eq({"name"=>{"type"=>"string"}})
|
17
|
+
end
|
18
|
+
|
19
|
+
it "optional_vars" do
|
20
|
+
result = content.optional_vars
|
21
|
+
expect(result).to eq({"project"=>{"default"=>"project-name"}})
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
context "description examples" do
|
26
|
+
let(:parsed) do
|
27
|
+
{
|
28
|
+
"variable"=>{
|
29
|
+
"project"=>{"default"=>"project-name", "description"=>"project name. IE: my-project"},
|
30
|
+
"name"=>{"type"=>"string"},
|
31
|
+
"azs"=>{"type"=>"list(string)"},
|
32
|
+
}
|
33
|
+
}
|
34
|
+
end
|
35
|
+
|
36
|
+
it "build" do
|
37
|
+
result = content.build
|
38
|
+
expected =<<~EOL
|
39
|
+
# Required variables:
|
40
|
+
name = "string"
|
41
|
+
azs = [...] # list(string)
|
42
|
+
|
43
|
+
# Optional variables:
|
44
|
+
# project = "project-name"
|
45
|
+
EOL
|
46
|
+
expect(result).to eq(expected)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
describe Terraspace::Seeder do
|
2
|
+
let(:seeder) { described_class.new(mod) }
|
3
|
+
let(:mod) do
|
4
|
+
mod = double(:mod).as_null_object
|
5
|
+
allow(mod).to receive(:cache_dir).and_return("spec/fixtures/cache_dir")
|
6
|
+
mod
|
7
|
+
end
|
8
|
+
|
9
|
+
context "tf files" do
|
10
|
+
it "parse" do
|
11
|
+
parsed = seeder.parse
|
12
|
+
expect(parsed).to eq(
|
13
|
+
{"variable"=>
|
14
|
+
{"project"=>{"description"=>"Project name. IE: test-project", "type"=>"string"},
|
15
|
+
"name"=>{"default"=>"demo-name", "type"=>"string"}}}
|
16
|
+
)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
@@ -0,0 +1,48 @@
|
|
1
|
+
describe Terraspace::Terraform::Args::Custom do
|
2
|
+
let(:custom) do
|
3
|
+
custom = described_class.new(mod, name)
|
4
|
+
custom.instance_variable_set(:@file, file) # override @file for spec
|
5
|
+
custom
|
6
|
+
end
|
7
|
+
let(:mod) { double(:mod).as_null_object }
|
8
|
+
|
9
|
+
context "single" do
|
10
|
+
let(:file) { fixture("terraform/args/single.rb") }
|
11
|
+
let(:name) { "apply" }
|
12
|
+
it "build creates the @commands structure" do
|
13
|
+
commands = custom.build
|
14
|
+
expect(commands.keys).to include("apply")
|
15
|
+
end
|
16
|
+
|
17
|
+
it "args" do
|
18
|
+
custom.build
|
19
|
+
expect(custom.args).to eq(["-lock-timeout=20m"])
|
20
|
+
end
|
21
|
+
|
22
|
+
it "var_files" do
|
23
|
+
custom.build
|
24
|
+
allow(custom).to receive(:var_file_exist?).and_return(true)
|
25
|
+
expect(custom.var_files).to eq(["-var-file=a.tfvars", "-var-file=b.tfvars"])
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
context "multiple" do
|
30
|
+
let(:file) { fixture("terraform/args/multiple.rb") }
|
31
|
+
let(:name) { "apply" }
|
32
|
+
it "build creates the @commands structure" do
|
33
|
+
commands = custom.build
|
34
|
+
expect(commands.keys).to include("apply")
|
35
|
+
end
|
36
|
+
|
37
|
+
it "args" do
|
38
|
+
custom.build
|
39
|
+
expect(custom.args).to eq(["-lock-timeout=20m"])
|
40
|
+
end
|
41
|
+
|
42
|
+
it "var_files" do
|
43
|
+
custom.build
|
44
|
+
allow(custom).to receive(:var_file_exist?).and_return(true)
|
45
|
+
expect(custom.var_files).to eq([])
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|