cfer-groups 0.1.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f8f07f00b10f226e19fc45bed18c65da99a73a6a
4
+ data.tar.gz: ab8163402cd03bb5b98b24da8b60da0ea4bf2b9c
5
+ SHA512:
6
+ metadata.gz: 7c2d9bcb45b4f06df1cc966d64848f0f2c5e6d10ef760aaaf6bda8ace133ea82c4dc732af833b904decb016460ca6b95b23333e55448916bb2703f8bf93a15e7
7
+ data.tar.gz: c23d44f46a1fa1cd3c60b2a3a8967c0ed2d3edfa778a1b60268a9fce8c4b4c0fade88bfe00630ff5bfb7e6b18656d815ae65064faa63aae2d116567fc3c5a99e
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.0
5
+ before_install: gem install bundler -v 1.13.6
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at stedwards87+git@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,13 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in cfer-groups.gemspec
4
+ gemspec
5
+
6
+ group :debug do
7
+ gem 'pry'
8
+ gem 'pry-byebug'
9
+ gem 'pry-rescue'
10
+ gem 'pry-stack_explorer'
11
+ gem 'travis'
12
+ end
13
+
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Sean Edwards
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # Cfer::Groups
2
+
3
+ This project needs a lot of doc work, but you can find the basic concept in the examples directory:
4
+
5
+ * `network_template.rb` defines a "resource group" which can be instantiated multiple times with different arguments. It's like a function, with some DSL sugar to establish a naming convention for related resources.
6
+ * `vpc.rb` uses the network template to create an actual network with three subnets.
7
+
8
+ Give it a try: `bundle exec cfer generate examples/vpc.rb`
9
+
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "cfer/groups"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,38 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'cfer/groups/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "cfer-groups"
8
+ spec.version = Cfer::Groups::VERSION
9
+ spec.authors = ["Sean Edwards"]
10
+ spec.email = ["stedwards87+git@gmail.com"]
11
+
12
+ spec.summary = %q{Cfer Groups}
13
+ spec.description = %q{Cfer Groups}
14
+ spec.homepage = "https://github.com/seanedwards/cfer-groups"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
19
+ if spec.respond_to?(:metadata)
20
+ #spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
21
+ else
22
+ raise "RubyGems 2.0 or newer is required to protect against " \
23
+ "public gem pushes."
24
+ end
25
+
26
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
27
+ f.match(%r{^(test|spec|features)/})
28
+ end
29
+ spec.bindir = "exe"
30
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
31
+ spec.require_paths = ["lib"]
32
+
33
+ spec.add_runtime_dependency "cfer", ">= 0.5"
34
+
35
+ spec.add_development_dependency "bundler", "~> 1.13"
36
+ spec.add_development_dependency "rake", "~> 10.0"
37
+ spec.add_development_dependency "rspec", "~> 3.0"
38
+ end
@@ -0,0 +1,74 @@
1
+ require 'cfer/groups'
2
+
3
+ # A resource group is a collection of interrelated resources.
4
+ # This example includes the basic resources to construct a simple VPC.
5
+ # The type can be anything you'd like, but must be unique.
6
+ # The :: syntax has no specific function, but looks like it fits in with AWS resources.
7
+ resource_group 'Cfer::Examples::Network' do |args|
8
+
9
+ # Anything created inside the resource group has something prepended to the name.
10
+ # In vpc.rb we can see that this resource group is created with the name "Network"
11
+ # Therefore, this parameter will appear as "NetworkVpcName" in the final template.
12
+ #
13
+ # The `args` is a hash containing all of the properties that were set in vpc.rb
14
+ parameter :VpcName, Default: args[:VpcName]
15
+
16
+ # Naming of resources works the same way as parameters.
17
+ # In vpc.rb this resource will be created as `NetworkVPC`
18
+ resource :VPC, 'AWS::EC2::VPC' do
19
+ cidr_block '172.42.0.0/16'
20
+
21
+ enable_dns_support true
22
+ enable_dns_hostnames true
23
+ instance_tenancy 'default'
24
+
25
+ # The ref() function translates the name into the current scope.
26
+ # If we were to create two networks, say `NetworkA` and `NetworkB`,
27
+ # the ref() function would know to reference `NetworkAVpcName` or `NetworkBVpcName`
28
+ tag :Name, ref(:VpcName)
29
+
30
+ # The get_att() function also exists, and works the same way as ref()
31
+ end
32
+
33
+ resource :DefaultIGW, 'AWS::EC2::InternetGateway'
34
+
35
+ resource :VpcIGW, 'AWS::EC2::VPCGatewayAttachment' do
36
+ vpc_id ref(:VPC)
37
+ internet_gateway_id ref(:DefaultIGW)
38
+ end
39
+
40
+ resource :RouteTable, 'AWS::EC2::RouteTable' do
41
+ vpc_id ref(:VPC)
42
+ end
43
+
44
+ # args are the preferred way of getting instance-specific values into your group.
45
+ # They work
46
+ subnet_count = args[:Subnets] || 2
47
+ (1..subnet_count).each do |i|
48
+ resource "Subnet#{i}", 'AWS::EC2::Subnet' do
49
+ availability_zone Fn::select(i, Fn::get_azs(AWS::region))
50
+ cidr_block "172.42.#{i}.0/24"
51
+ vpc_id ref(:VPC)
52
+ end
53
+
54
+ resource "SRTA#{i}".to_sym, 'AWS::EC2::SubnetRouteTableAssociation' do
55
+ subnet_id ref("Subnet#{i}")
56
+ route_table_id ref(:RouteTable)
57
+ end
58
+
59
+ output "SubnetID#{i}", ref("Subnet#{i}")
60
+ end
61
+
62
+
63
+ # If you need a scoped name directly, you can use the name_of() function.
64
+ # You can see this is used in the DependsOn attribute of this resource
65
+ # ref(:VpcName) is actually just defined as Fn::ref(name_of(:VpcName))
66
+ resource :DefaultRoute, 'AWS::EC2::Route', DependsOn: [ name_of(:VpcIGW) ] do
67
+ route_table_id ref(:RouteTable)
68
+ gateway_id ref(:DefaultIGW)
69
+ destination_cidr_block '0.0.0.0/0'
70
+ end
71
+
72
+ # Outputs are named the same way. This output will appear in the template as `NetworkVpcId`
73
+ output :VpcId, ref(:VPC)
74
+ end
data/examples/vpc.rb ADDED
@@ -0,0 +1,57 @@
1
+ include_template 'network_template.rb'
2
+
3
+ # This is the creation of the resource group. From this statement, cfer will generate
4
+ # a handful of resources, with names all prefixed with `Network`.
5
+ #
6
+ # You can create as many instances of 'Cfer::Examples::Network' as you'd like,
7
+ # with different names.
8
+ resource :Network, 'Cfer::Examples::Network' do
9
+ vpc_name "my-network"
10
+ subnets 3
11
+
12
+ # Tags are applied to every resource in the group.
13
+ tag :Name, 'My Network'
14
+ end
15
+
16
+ # Resource groups will also insert an extra CloudFormation wait condition handle
17
+ # into your template. It's a wait condition handle because that's the only CFN
18
+ # resource that does nothing on its own.
19
+ #
20
+ # This resource has a couple of properties:
21
+ #
22
+ # * It depend on every resource defined inside the group, so if the resource named
23
+ # "Network" is finished, you know that everything inside the "Network" group is
24
+ # also finished.
25
+ #
26
+ # * It includes all of the properties that you specified in your template in the
27
+ # resource metadata. This has no technical value, but it makes it easier to debug
28
+ # your resource groups with `cfer generate`
29
+ #
30
+ # The custom resource for this invocation looks like this:
31
+ #
32
+ # "Network": {
33
+ # "Type": "AWS::CloudFormation::WaitConditionHandle",
34
+ # "Properties": {
35
+ # },
36
+ # "DependsOn": [
37
+ # "NetworkVPC",
38
+ # "NetworkDefaultIGW",
39
+ # "NetworkVpcIGW",
40
+ # "NetworkRouteTable",
41
+ # "NetworkSubnet1",
42
+ # "NetworkSRTA1",
43
+ # "NetworkSubnet2",
44
+ # "NetworkSRTA2",
45
+ # "NetworkSubnet3",
46
+ # "NetworkSRTA3",
47
+ # "NetworkDefaultRoute"
48
+ # ],
49
+ # "Metadata": {
50
+ # "Type": "Cfer::Examples::Network",
51
+ # "Properties": {
52
+ # "VpcName": "my-network",
53
+ # "Subnets": 3
54
+ # }
55
+ # }
56
+ # }
57
+
@@ -0,0 +1,26 @@
1
+ require 'cfer/groups'
2
+
3
+ Cfer::Groups::Stack::resource_group 'Cfer::Prefabs::SecurityGroupPair' do |args|
4
+ ports = args[:Ports]
5
+
6
+ resource :ClientSG, 'AWS::EC2::SecurityGroup' do
7
+ group_description args[:ClientGroupDescription] if args[:ClientGroupDescription]
8
+ vpc_id args[:VpcId]
9
+ end
10
+
11
+ resource :ServerSG, 'AWS::EC2::SecurityGroup' do
12
+ group_description args[:ServerGroupDescription] if args[:ServerGroupDescription]
13
+ vpc_id args[:VpcId]
14
+ end
15
+
16
+ ports.each_with_index do |port, i|
17
+ resource "ServerSGClientIngress#{i}", 'AWS::EC2::SecurityGroupIngress' do
18
+ group_id ref(:ServerSG)
19
+ ip_protocol 'tcp'
20
+ from_port port
21
+ to_port port
22
+ source_security_group_id ref(:ClientSG)
23
+ end
24
+ end
25
+
26
+ end
@@ -0,0 +1,10 @@
1
+ module Cfer
2
+ module Groups
3
+ module Resource
4
+ extend Forwardable
5
+ attr_accessor :cfer_resource_group
6
+ def_delegators :cfer_resource_group, :name_of, :ref, :get_att
7
+ end
8
+ end
9
+ end
10
+
@@ -0,0 +1,67 @@
1
+ module Cfer
2
+ module Groups
3
+ module ResourceGroup
4
+ attr_reader :stack
5
+
6
+ def initialize(name, type, stack, **options, &block)
7
+ @group_name = name
8
+ @resource_type = type
9
+ options = { DependsOn: [] }.merge(options)
10
+
11
+ super name, "AWS::CloudFormation::WaitConditionHandle", stack, options do
12
+ self.instance_exec &block if block
13
+ self[:Metadata] = {
14
+ Type: type,
15
+ Properties: self[:Properties]
16
+ }
17
+ end
18
+
19
+ Docile.dsl_eval self, self[:Properties] do
20
+ self.instance_exec self[:Properties], &self.class.block if self.class.block
21
+ end
22
+ self[:Properties] = {}
23
+ end
24
+
25
+ def resource(name, type, options = {}, &block)
26
+ rc_name = name_of(name)
27
+ self[:DependsOn] << rc_name
28
+
29
+ group = self
30
+ rc = @stack.resource rc_name, type, options do
31
+ self.cfer_resource_group = group
32
+ self.instance_eval &block
33
+ end
34
+
35
+ if self[:Tags]
36
+ self[:Tags].each do |t|
37
+ rc.tag t["Key"], t["Value"]
38
+ end
39
+ end
40
+
41
+ rc
42
+ end
43
+
44
+ def output(name, value, options = {})
45
+ stack.output name_of(name), value, options
46
+ end
47
+
48
+ def name_of(name)
49
+ "#{@group_name}#{name}"
50
+ end
51
+
52
+ def ref(obj)
53
+ Cfer::Core::Functions::Fn::ref name_of(obj)
54
+ end
55
+
56
+ def parameter(name, options = {})
57
+ stack.parameter name_of(name), options
58
+ end
59
+
60
+ def get_att(obj, att)
61
+ Cfer::Core::Functions::Fn::get_att name_of(obj), att
62
+ end
63
+ end
64
+
65
+ end
66
+ end
67
+
@@ -0,0 +1,17 @@
1
+ module Cfer
2
+ module Groups
3
+ module Stack
4
+ def resource_group(type, &block)
5
+ Cfer::Core::Resource.extend_resource(type) do
6
+ class << self;
7
+ attr_accessor :block
8
+ end
9
+ @block = block
10
+ include Cfer::Groups::ResourceGroup
11
+ end
12
+ end
13
+ module_function :resource_group
14
+ end
15
+ end
16
+ end
17
+
@@ -0,0 +1,5 @@
1
+ module Cfer
2
+ module Groups
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
@@ -0,0 +1,11 @@
1
+ require 'cfer/groups/version'
2
+ require 'cfer/groups/stack'
3
+ require 'cfer/groups/resource'
4
+ require 'cfer/groups/resource_group'
5
+
6
+ Cfer::Core::Stack.extend_stack do
7
+ include Cfer::Groups::Stack
8
+ end
9
+
10
+ Cfer::Core::Resource.include(Cfer::Groups::Resource)
11
+
metadata ADDED
@@ -0,0 +1,120 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cfer-groups
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Sean Edwards
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2018-01-11 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: cfer
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0.5'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0.5'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.13'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.13'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '3.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '3.0'
69
+ description: Cfer Groups
70
+ email:
71
+ - stedwards87+git@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".gitignore"
77
+ - ".rspec"
78
+ - ".travis.yml"
79
+ - CODE_OF_CONDUCT.md
80
+ - Gemfile
81
+ - LICENSE.txt
82
+ - README.md
83
+ - Rakefile
84
+ - bin/console
85
+ - bin/setup
86
+ - cfer-groups.gemspec
87
+ - examples/network_template.rb
88
+ - examples/vpc.rb
89
+ - lib/cfer/groups.rb
90
+ - lib/cfer/groups/prefabs/sg_pair.rb
91
+ - lib/cfer/groups/resource.rb
92
+ - lib/cfer/groups/resource_group.rb
93
+ - lib/cfer/groups/stack.rb
94
+ - lib/cfer/groups/version.rb
95
+ homepage: https://github.com/seanedwards/cfer-groups
96
+ licenses:
97
+ - MIT
98
+ metadata: {}
99
+ post_install_message:
100
+ rdoc_options: []
101
+ require_paths:
102
+ - lib
103
+ required_ruby_version: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: '0'
108
+ required_rubygems_version: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: '0'
113
+ requirements: []
114
+ rubyforge_project:
115
+ rubygems_version: 2.5.1
116
+ signing_key:
117
+ specification_version: 4
118
+ summary: Cfer Groups
119
+ test_files: []
120
+ has_rdoc: