terraspace 0.5.5 → 0.5.10

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: 2c1f2eeedf81924675273ea090cf485919fe3fa74f178dad36cb49a92a91cbc7
4
- data.tar.gz: cb925de348699c79e71a86a8a17c518ead35ed3c1efd8d1639938019ea93f2b9
3
+ metadata.gz: 1cdf03c4bdbb78f6b313f753247facd1b5a0a81fecef5a2b2bd12e1eee5c34ee
4
+ data.tar.gz: '09e04997aa61e94a3eaf4ac4d455a0be4f30e401352dacf57b1e2b403977a511'
5
5
  SHA512:
6
- metadata.gz: 5013095abeeb89a2229bd85d197dd424f5675e69b23f5c24752c6d70ac4d461c00762c9d2025c01d64066622a1d342dfdf1fe4a06d8125ad10329a569f79de31
7
- data.tar.gz: a5d2374d71923a9df87cd7ecd045b196017c101562265aca253a998ced96646896aab5af5e1a77f26e5cb8bb960628fc0c716a8519a4e21387d4a5afbe1c991b
6
+ metadata.gz: fcb9519b863343ee042eb624c3fc1dd031f7de6bbb1d47c3d02bc3852d5ef68639efea275646222eacc3cbec2c83cb312f74387f425b7fd9d21d98650db47056
7
+ data.tar.gz: c2ad72731535c2a0c01ab112bf70d2f68d1c9e4ad10b7a1d28d6c86c7aabfdb2c706d1b0bbba8d7a5523c78c0414cce4d4f49c35e60215bd7f9a303c6b57110e
@@ -3,6 +3,23 @@
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/), even before v1.0.
5
5
 
6
+ ## [0.5.10] - 2020-12-11
7
+ - [#69](https://github.com/boltops-tools/terraspace/pull/69) require singleton earlier
8
+
9
+ ## [0.5.9] - 2020-12-11
10
+ - [#68](https://github.com/boltops-tools/terraspace/pull/68) require singleton
11
+ - fix graphviz check for format text, improve graphviz install help message
12
+
13
+ ## [0.5.8] - 2020-12-04
14
+ - [#67](https://github.com/boltops-tools/terraspace/pull/67) fix find placeholder stack so config/terraform only builds for stacks
15
+
16
+ ## [0.5.7] - 2020-12-02
17
+ - [#64](https://github.com/boltops-tools/terraspace/pull/64) fix completion_script
18
+
19
+ ## [0.5.6] - 2020-11-30
20
+ - [#61](https://github.com/boltops-tools/terraspace/pull/61) allow envs and regions check feature
21
+ - fix terraspace build before hook
22
+
6
23
  ## [0.5.5] - 2020-11-27
7
24
  - fix link
8
25
 
data/README.md CHANGED
@@ -12,9 +12,9 @@ The Terraform Framework.
12
12
 
13
13
  Official Docs Site: [terraspace.cloud](https://terraspace.cloud)
14
14
 
15
- Introduction Video:
15
+ Quick Start Demo:
16
16
 
17
- [![Watch the video](https://img.boltops.com/boltops/tools/terraspace/terraspace-youtube.png)](https://www.youtube.com/watch?v=O87t5q22YNc)
17
+ [![Watch the video](https://img.boltops.com/boltops/tools/terraspace/youtube/terraspace-quick-start.png)](https://www.youtube.com/watch?v=EZfsBJx8pxQ)
18
18
 
19
19
  ## Quick Start
20
20
 
@@ -103,7 +103,7 @@ To install modules:
103
103
 
104
104
  ## Features
105
105
 
106
- * [Config Structure](https://terraspace.cloud/docs/config/): A common config structure that gets materializes with the deployed module. Configs can be dynamically controlled to keep your code DRY. You can override the settings if needed, like for using existing backends. See: [Existing Backends](https://terraspace.cloud/docs/state/existing/).
106
+ * [DRY](https://terraspace.cloud/docs/intro/how-terraspace-works/): You can keep your code DRY. Terraspace builds your Terraform project with common `app` and `config/terraform` structure that gets built each deploy. You can override the settings if needed, like for using existing backends. See: [Existing Backends](https://terraspace.cloud/docs/state/existing/).
107
107
  * [Generators](https://terraspace.cloud/docs/generators/): Built-in generators to quickly create the starter module. Focus on code instead of boilerplate structure.
108
108
  * [Multiple Environments](https://terraspace.cloud/docs/patterns/multiple-envs/): [Tfvars](https://terraspace.cloud/docs/tfvars/) & [Layering](https://terraspace.cloud/docs/tfvars/layering/) allow you to the same code with different tfvars to create multiple environments. Terraspace conventionally loads tfvars from the `tfvars` folder. Rich layering support allows you to build different environments like dev and prod with the same code. Examples are in [Full Layering](https://terraspace.cloud/docs/tfvars/full-layering/).
109
109
  * [Deploy Multiple Stacks](https://terraspace.cloud/docs/intro/deploy-all/): The ability to deploy multiple stacks with a single command. Terraspace calculates the [dependency graph](https://terraspace.cloud/docs/dependencies/) and deploys stacks in the right order. You can also target specific stacks and deploy [subgraphs](https://terraspace.cloud/docs/dependencies/subgraphs/).
@@ -19,6 +19,7 @@ require "memoist"
19
19
  require "rainbow/ext/string"
20
20
  require "render_me_pretty"
21
21
  require "set"
22
+ require "singleton"
22
23
  require "terraspace/ext"
23
24
  require "terraspace/version"
24
25
 
@@ -109,13 +109,12 @@ module Terraspace::All
109
109
 
110
110
  # Check if Graphiz is installed and prints a user friendly message if it is not installed.
111
111
  def check_graphviz!
112
+ return if @options[:format] == 'text'
113
+
112
114
  installed = system("type dot > /dev/null 2>&1") # dot is a command that is part of the graphviz package
113
115
  return if installed
114
116
  logger.error "ERROR: It appears that the Graphviz is not installed. Please install it to use the graph command.".color(:red)
115
- if RUBY_PLATFORM =~ /darwin/
116
- logger.error "You can install Graphviz with homebrew:"
117
- logger.error " brew install graphviz"
118
- end
117
+ install_instructions
119
118
  logger.info <<~EOL
120
119
  Also consider:
121
120
 
@@ -125,5 +124,23 @@ module Terraspace::All
125
124
  EOL
126
125
  exit 1
127
126
  end
127
+
128
+ def install_instructions
129
+ installer = if RUBY_PLATFORM =~ /darwin/
130
+ "brew"
131
+ elsif system("type yum > /dev/null 2>&1")
132
+ "yum"
133
+ elsif system("type apt-get > /dev/null 2>&1")
134
+ "apt-get"
135
+ end
136
+
137
+ return unless installer
138
+ logger.error <<~EOL
139
+ You can install Graphviz with:
140
+
141
+ #{installer} install graphviz
142
+
143
+ EOL
144
+ end
128
145
  end
129
146
  end
@@ -18,6 +18,9 @@ module Terraspace
18
18
  config.all.exit_on_fail.down = true
19
19
  config.all.exit_on_fail.up = true
20
20
  config.all.ignore_stacks = []
21
+ config.allow = ActiveSupport::OrderedOptions.new
22
+ config.allow.envs = nil
23
+ config.allow.regions = nil
21
24
  config.auto_create_backend = true
22
25
  config.build = ActiveSupport::OrderedOptions.new
23
26
  config.build.cache_dir = ":CACHE_ROOT/:REGION/:ENV/:BUILD_DIR"
@@ -16,7 +16,9 @@ module Terraspace
16
16
  logger.info "Building #{build_dir}" unless @options[:quiet] # from terraspace all
17
17
 
18
18
  batches = nil
19
+ FileUtils.mkdir_p(@mod.cache_dir) # so terraspace before build hooks work
19
20
  run_hooks("terraspace.rb", "build") do
21
+ check_allow!
20
22
  build_unresolved
21
23
  auto_create_backend
22
24
  batches = build_batches
@@ -26,6 +28,10 @@ module Terraspace
26
28
  batches
27
29
  end
28
30
 
31
+ def check_allow!
32
+ Allow.new(@mod).check!
33
+ end
34
+
29
35
  # Builds dependency graph and returns the batches to run
30
36
  def build_batches
31
37
  dependencies = Terraspace::Dependency::Registry.data # populated after build_unresolved
@@ -0,0 +1,43 @@
1
+ class Terraspace::Builder
2
+ class Allow
3
+ def initialize(mod)
4
+ @mod = mod
5
+ end
6
+
7
+ def check!
8
+ messages = []
9
+ unless env_allowed?
10
+ messages << "This env is not allowed to be used: TS_ENV=#{Terraspace.env}"
11
+ messages << "Allowed envs: #{config.allow.envs.join(', ')}"
12
+ end
13
+ unless region_allowed?
14
+ messages << "This region is not allowed to be used: Detected current region=#{current_region}"
15
+ messages << "Allowed regions: #{config.allow.regions.join(', ')}"
16
+ end
17
+ unless messages.empty?
18
+ puts "ERROR: The configs do not allow this.".color(:red)
19
+ puts messages
20
+ exit 1
21
+ end
22
+ end
23
+
24
+ def env_allowed?
25
+ return true unless config.allow.envs
26
+ config.allow.envs.include?(Terraspace.env)
27
+ end
28
+
29
+ def region_allowed?
30
+ return true unless config.allow.regions
31
+ config.allow.regions.include?(current_region)
32
+ end
33
+
34
+ def current_region
35
+ expander = Terraspace::Compiler::Expander.autodetect(@mod).expander
36
+ expander.region
37
+ end
38
+
39
+ def config
40
+ Terraspace.config
41
+ end
42
+ end
43
+ end
@@ -18,17 +18,17 @@ module Terraspace::CLI::Build
18
18
  mod = @options[:mod]
19
19
  if !mod or %w[placeholder].include?(mod)
20
20
  logger.info "Building one of the modules to get backend.tf info"
21
- mod = find_mod
21
+ mod = find_stack
22
22
  end
23
23
  Terraspace::Builder.new(@options.merge(mod: mod, init: false)).run # generate and init
24
24
  Terraspace::Mod.new(mod, @options) # mod metadata
25
25
  end
26
26
 
27
27
  # Used by: terraspace build placeholder
28
- def find_mod
29
- mod_path = Dir.glob("{app,vendor}/{modules,stacks}/*").last
28
+ def find_stack
29
+ mod_path = Dir.glob("{app,vendor}/stacks/*").last
30
30
  unless mod_path
31
- logger.info "No modules or stacks found."
31
+ logger.info "No stacks found."
32
32
  exit 0
33
33
  end
34
34
  File.basename(mod_path) # mod name
@@ -1,74 +1,69 @@
1
- =begin
2
- Code Explanation:
3
-
4
- There are 3 types of things to auto-complete:
5
-
6
- 1. command: the command itself
7
- 2. parameters: command parameters.
8
- 3. options: command options
9
-
10
- Here's an example:
11
-
12
- mycli hello name --from me
13
-
14
- * command: hello
15
- * parameters: name
16
- * option: --from
17
-
18
- When command parameters are done processing, the remaining completion words will be options. We can tell that the command params are completed based on the method arity.
19
-
20
- ## Arity
21
-
22
- For example, say you had a method for a CLI command with the following form:
23
-
24
- ufo scale service count --cluster dev
25
-
26
- It's equivalent ruby method:
27
-
28
- scale(service, count) = has an arity of 2
29
-
30
- So typing:
31
-
32
- ufo scale service count [TAB] # there are 3 parameters including the "scale" command according to Thor's CLI processing.
33
-
34
- So the completion should only show options, something like this:
35
-
36
- --noop --verbose --cluster
37
-
38
- ## Splat Arguments
39
-
40
- When the ruby method has a splat argument, it's arity is negative. Here are some example methods and their arities.
41
-
42
- ship(service) = 1
43
- scale(service, count) = 2
44
- ships(*services) = -1
45
- foo(example, *rest) = -2
46
-
47
- Fortunately, negative and positive arity values are processed the same way. So we take simply take the absolute value of the arity and process it the same.
48
-
49
- Here are some test cases, hit TAB after typing the command:
50
-
51
- terraspace completion
52
- terraspace completion hello
53
- terraspace completion hello name
54
- terraspace completion hello name --
55
- terraspace completion hello name --noop
56
-
57
- terraspace completion
58
- terraspace completion sub:goodbye
59
- terraspace completion sub:goodbye name
60
-
61
- ## Subcommands and Thor::Group Registered Commands
62
-
63
- Sometimes the commands are not simple thor commands but are subcommands or Thor::Group commands. A good specific example is the ufo tool.
64
-
65
- * regular command: ufo ship
66
- * subcommand: ufo docker
67
- * Thor::Group command: ufo init
68
-
69
- Auto-completion accounts for each of these type of commands.
70
- =end
71
- module Terraspace
1
+ # begin
2
+ # Code Explanation:
3
+ #
4
+ # There are 3 types of things to auto-complete:
5
+ #
6
+ # 1. command: the command itself
7
+ # 2. parameters: command parameters.
8
+ # 3. options: command options
9
+ #
10
+ # Here's an example:
11
+ #
12
+ # mycli hello name --from me
13
+ #
14
+ # * command: hello
15
+ # * parameters: name
16
+ # * option: --from
17
+ #
18
+ # When command parameters are done processing, the remaining completion words will be options. We can tell that the command params are completed based on the method arity.
19
+ #
20
+ # ## Arity
21
+ #
22
+ # For example, say you had a method for a CLI command with the following form:
23
+ #
24
+ # terraspace up STACK
25
+ #
26
+ # It's equivalent ruby method:
27
+ #
28
+ # up(mod) = has an arity of 1
29
+ #
30
+ # So typing:
31
+ #
32
+ # terraspace up [TAB] # there is parameter including the "scale" command according to Thor's CLI processing.
33
+ #
34
+ # So the completion should only show options, something like this:
35
+ #
36
+ # --noop --verbose --cluster
37
+ #
38
+ # ## Splat Arguments
39
+ #
40
+ # When the ruby method has a splat argument, it's arity is negative. Here are some example methods and their arities.
41
+ #
42
+ # up(mod) = 1
43
+ # scale(service, count) = 2
44
+ # bundle(*args) = -1
45
+ # foo(example, *rest) = -2
46
+ #
47
+ # Fortunately, negative and positive arity values are processed the same way. So we take simply take the absolute value of the arity and process it the same.
48
+ #
49
+ # Here are some test cases, hit TAB after typing the command:
50
+ #
51
+ # terraspace completion
52
+ # terraspace completion up
53
+ # terraspace completion up name
54
+ # terraspace completion up name --
55
+ # terraspace completion up name --noop
56
+ #
57
+ # ## Subcommands and Thor::Group Registered Commands
58
+ #
59
+ # Sometimes the commands are not simple thor commands but are subcommands or Thor::Group commands. A good specific example is the terraspace tool.
60
+ #
61
+ # * regular command: terraspace up
62
+ # * subcommand: terraspace all
63
+ # * Thor::Group command: terraspace new project
64
+
65
+ # Auto-completion accounts for each of these type of commands.
66
+ class Terraspace::CLI
72
67
  class Completer
73
68
  def initialize(command_class, *params)
74
69
  @params = params
@@ -132,7 +127,6 @@ module Terraspace
132
127
 
133
128
  def params_completion
134
129
  offset = @params.size - 1
135
- offset_params = command_params[offset..-1]
136
130
  command_params[offset..-1].first
137
131
  end
138
132
 
@@ -1,6 +1,6 @@
1
- class Terraspace::Completer::Script
1
+ class Terraspace::CLI::Completer::Script
2
2
  def self.generate
3
3
  bash_script = File.expand_path("script.sh", File.dirname(__FILE__))
4
- logger.info "source #{bash_script}"
4
+ puts "source #{bash_script}"
5
5
  end
6
6
  end
@@ -19,7 +19,7 @@ module Terraspace
19
19
 
20
20
  def placeholder(name)
21
21
  if name == "placeholder"
22
- Terraspace::CLI::Build::Placeholder.new(@options).find_mod
22
+ Terraspace::CLI::Build::Placeholder.new(@options).find_stack
23
23
  else
24
24
  name
25
25
  end
@@ -1,3 +1,3 @@
1
1
  module Terraspace
2
- VERSION = "0.5.5"
2
+ VERSION = "0.5.10"
3
3
  end
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: 0.5.5
4
+ version: 0.5.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-11-27 00:00:00.000000000 Z
11
+ date: 2020-12-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -465,6 +465,7 @@ files:
465
465
  - lib/terraspace/autoloader.rb
466
466
  - lib/terraspace/booter.rb
467
467
  - lib/terraspace/builder.rb
468
+ - lib/terraspace/builder/allow.rb
468
469
  - lib/terraspace/bundle.rb
469
470
  - lib/terraspace/cli.rb
470
471
  - lib/terraspace/cli/all.rb
@@ -480,6 +481,9 @@ files:
480
481
  - lib/terraspace/cli/cloud.rb
481
482
  - lib/terraspace/cli/cloud/runs.rb
482
483
  - lib/terraspace/cli/commander.rb
484
+ - lib/terraspace/cli/completer.rb
485
+ - lib/terraspace/cli/completer/script.rb
486
+ - lib/terraspace/cli/completer/script.sh
483
487
  - lib/terraspace/cli/down.rb
484
488
  - lib/terraspace/cli/help.rb
485
489
  - lib/terraspace/cli/help/all/down.md
@@ -607,9 +611,6 @@ files:
607
611
  - lib/terraspace/compiler/strategy/tfvar/rb.rb
608
612
  - lib/terraspace/compiler/strategy/tfvar/tfvars.rb
609
613
  - lib/terraspace/compiler/writer.rb
610
- - lib/terraspace/completer.rb
611
- - lib/terraspace/completer/script.rb
612
- - lib/terraspace/completer/script.sh
613
614
  - lib/terraspace/core.rb
614
615
  - lib/terraspace/dependency/graph.rb
615
616
  - lib/terraspace/dependency/helper/base.rb