firespring_dev_commands 2.1.32.pre.alpha.3 → 2.1.32.pre.alpha.5
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 79a1a2ae3dec85f284124b6b7148ada390d1b1761d051470a5c05157c22873ae
|
4
|
+
data.tar.gz: d0754a57c361e5532e48ecf5025f38c7ee3e63f1ee67b8ed33cc80f542562d2d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 90133369d6cb5eb63925f4b9e3223a7ca51cd8235ef8d945d9a12223fc5594ccb91faf4dcdf15d77e849e4b662a97e02a831e9bc338745c536c1d41110f7af17
|
7
|
+
data.tar.gz: c4ee82f9c701470b1f2624b30c6d906155f269d9900a5742dc63fb1f33dec1c91b117e6cd1c48cbd9618e0dc74827741c0db19473942bd6134c52c62bdbbf500
|
@@ -1,75 +1,106 @@
|
|
1
|
-
require 'aws-sdk-route53'
|
2
|
-
|
3
1
|
module Dev
|
4
2
|
class Aws
|
5
3
|
# Class for performing Route53 functions
|
6
4
|
class Route53
|
7
|
-
attr_reader :client, :zones
|
5
|
+
attr_reader :client, :zones, :domains
|
8
6
|
|
9
|
-
def initialize
|
7
|
+
def initialize(domains)
|
10
8
|
@client = ::Aws::Route53::Client.new
|
9
|
+
@domains = domains
|
10
|
+
end
|
11
|
+
|
12
|
+
private def zones
|
13
|
+
if @domains.empty?
|
14
|
+
all_zones
|
15
|
+
else
|
16
|
+
zones_by_domain_names(@domains)
|
17
|
+
end
|
11
18
|
end
|
12
19
|
|
13
|
-
def
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
response.hosted_zones.each do |hosted_zone|
|
19
|
-
ary << hosted_zone.id unless hosted_zone.config.private_zone
|
20
|
-
end
|
20
|
+
private def all_zones
|
21
|
+
[].tap do |ary|
|
22
|
+
Dev::Aws.each_page(client, :list_hosted_zones) do |response|
|
23
|
+
response.hosted_zones&.each do |hosted_zone|
|
24
|
+
ary << hosted_zone unless hosted_zone.config.private_zone
|
21
25
|
end
|
22
26
|
end
|
23
|
-
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
private def zones_by_domain_names(domains)
|
31
|
+
[].tap do |ary|
|
24
32
|
domains.each do |domain_name|
|
25
|
-
|
26
|
-
|
27
|
-
raise "The #{domain_name} hosted zone not found."
|
33
|
+
response = client.list_hosted_zones_by_name({dns_name: domain_name})
|
34
|
+
target = response.hosted_zones.find { |it| it.name.chomp('.') == domain_name }
|
35
|
+
raise "The #{domain_name} hosted zone not found." unless target
|
28
36
|
|
29
|
-
|
37
|
+
ary << target
|
30
38
|
end
|
31
39
|
end
|
32
|
-
raise 'Hosted zone(s) not found.' if @zones.empty?
|
33
40
|
end
|
34
41
|
|
35
|
-
def
|
42
|
+
private def target_config_id(zone_id)
|
36
43
|
client.list_query_logging_configs(
|
37
44
|
hosted_zone_id: zone_id,
|
38
45
|
max_results: '1'
|
39
|
-
).query_logging_configs
|
46
|
+
).query_logging_configs&.first&.id
|
47
|
+
end
|
48
|
+
|
49
|
+
private def pretty_puts(output)
|
50
|
+
# Find the maximum length of the keys
|
51
|
+
max_key_length = output.keys.map(&:to_s).max_by(&:length).length
|
52
|
+
|
53
|
+
output.each do |key, value|
|
54
|
+
puts "#{key.to_s.ljust(max_key_length)}\t=>\t#{value}"
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
def list_query_configs
|
59
|
+
output = {}
|
60
|
+
zones.each do |zone|
|
61
|
+
target_config_id = target_config_id(zone.id)
|
62
|
+
|
63
|
+
output[zone.name] = if target_config_id
|
64
|
+
"Config\t=>\t#{target_config_id}".colorize(:green)
|
65
|
+
else
|
66
|
+
'No query logging config assigned.'.colorize(:red)
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
pretty_puts(output)
|
40
71
|
end
|
41
72
|
|
42
73
|
def activate_query_logging(log_group)
|
43
74
|
output = {}
|
44
75
|
|
45
|
-
|
76
|
+
zones.each do |zone|
|
46
77
|
response = client.create_query_logging_config(
|
47
|
-
hosted_zone_id: zone,
|
78
|
+
hosted_zone_id: zone.id,
|
48
79
|
cloud_watch_logs_log_group_arn: log_group
|
49
80
|
)
|
50
|
-
output[zone] = response.location
|
81
|
+
output[zone.id] = response.location
|
51
82
|
rescue ::Aws::Route53::Errors::ServiceError => e
|
52
83
|
raise "Error: #{e.message}" unless e.instance_of?(::Aws::Route53::Errors::QueryLoggingConfigAlreadyExists)
|
53
84
|
|
54
|
-
output[zone] = e.message
|
85
|
+
output[zone.id] = e.message
|
55
86
|
end
|
56
|
-
|
87
|
+
pretty_puts(output)
|
57
88
|
end
|
58
89
|
|
59
90
|
def deactivate_query_logging
|
60
91
|
output = {}
|
61
|
-
|
62
|
-
target_config_id =
|
92
|
+
zones.each do |zone|
|
93
|
+
target_config_id = target_config_id(zone.id)
|
63
94
|
if target_config_id
|
64
95
|
client.delete_query_logging_config(
|
65
96
|
id: target_config_id
|
66
97
|
)
|
67
|
-
output[zone] = 'Query logging config removed.'
|
98
|
+
output[zone.id] = 'Query logging config removed.'.colorize(:green)
|
68
99
|
else
|
69
|
-
output[zone] = 'No query logging config assigned.'
|
100
|
+
output[zone.id] = 'No query logging config assigned.'.colorize(:red)
|
70
101
|
end
|
71
102
|
end
|
72
|
-
|
103
|
+
pretty_puts(output)
|
73
104
|
end
|
74
105
|
end
|
75
106
|
end
|
@@ -0,0 +1,106 @@
|
|
1
|
+
require_relative '../../base_interface'
|
2
|
+
|
3
|
+
module Dev
|
4
|
+
module Template
|
5
|
+
class Aws
|
6
|
+
module Services
|
7
|
+
# Class contains rake templates for managing your AWS settings and logging in
|
8
|
+
class Route53 < Dev::Template::BaseInterface
|
9
|
+
# Create the rake task which ensures active credentials are present
|
10
|
+
def create_ensure_credentials_task!
|
11
|
+
# Have to set a local variable to be accessible inside of the instance_eval block
|
12
|
+
exclude = @exclude
|
13
|
+
|
14
|
+
DEV_COMMANDS_TOP_LEVEL.instance_eval do
|
15
|
+
return if exclude.include?(:ensure_aws_credentials)
|
16
|
+
|
17
|
+
task ensure_aws_credentials: %w(init) do
|
18
|
+
raise 'AWS Credentials not found / expired' unless Dev::Aws::Credentials.new.active?
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
# Create the rake task for the hosted zone method
|
24
|
+
def create_dns_logging_activate_task!
|
25
|
+
# Have to set a local variable to be accessible inside of the instance_eval block
|
26
|
+
exclude = @exclude
|
27
|
+
|
28
|
+
DEV_COMMANDS_TOP_LEVEL.instance_eval do
|
29
|
+
namespace :aws do
|
30
|
+
return if exclude.include?(:dns_logging)
|
31
|
+
|
32
|
+
namespace :hosted_zone do
|
33
|
+
namespace :dns_logging do
|
34
|
+
desc 'Activates query logging for all hosted zones by default.' \
|
35
|
+
'This command should be run from the account the hosted zone(s) reside.' \
|
36
|
+
"\n\t(Required) Specify LOG_GROUP_ARN='arn:aws:logs:REGION:ACCOUNT_ID:' to specify the ARN of the target log group." \
|
37
|
+
"\n\toptionally specify DOMAINS='foo.com,foobar.com' to specify the hosted zones to activate." \
|
38
|
+
"\n\t\tComma delimited list."
|
39
|
+
task activate: %w(ensure_aws_credentials) do
|
40
|
+
route53 = Dev::Aws::Route53.new(ENV['DOMAINS'].to_s.strip.split(','))
|
41
|
+
# Use user defined log group.
|
42
|
+
log_group = ENV.fetch('LOG_GROUP_ARN', nil)
|
43
|
+
raise 'The Hosted Zone Log Group ARN, LOG_GROUP_ARN, is required' unless log_group
|
44
|
+
|
45
|
+
route53.activate_query_logging(log_group)
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
# Create the rake task for the hosted zone method
|
54
|
+
def create_dns_logging_deactivate_task!
|
55
|
+
# Have to set a local variable to be accessible inside of the instance_eval block
|
56
|
+
exclude = @exclude
|
57
|
+
|
58
|
+
DEV_COMMANDS_TOP_LEVEL.instance_eval do
|
59
|
+
namespace :aws do
|
60
|
+
return if exclude.include?(:dns_logging)
|
61
|
+
|
62
|
+
namespace :hosted_zone do
|
63
|
+
namespace :dns_logging do
|
64
|
+
desc 'Deactivates query logging for all hosted zones by default. ' \
|
65
|
+
'This command should be run from the account the hosted zone(s) reside.' \
|
66
|
+
"\n\toptionally specify DOMAINS='foo.com,foobar.com' to specify the hosted zones to activate." \
|
67
|
+
"\n\t\tComma delimited list."
|
68
|
+
task deactivate: %w(ensure_aws_credentials) do
|
69
|
+
route53 = Dev::Aws::Route53.new(ENV['DOMAINS'].to_s.strip.split(','))
|
70
|
+
route53.deactivate_query_logging
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
# Create the rake task for the hosted zone method
|
79
|
+
def create_list_query_config_task!
|
80
|
+
# Have to set a local variable to be accessible inside of the instance_eval block
|
81
|
+
exclude = @exclude
|
82
|
+
|
83
|
+
DEV_COMMANDS_TOP_LEVEL.instance_eval do
|
84
|
+
namespace :aws do
|
85
|
+
return if exclude.include?(:dns_logging)
|
86
|
+
|
87
|
+
namespace :hosted_zone do
|
88
|
+
namespace :dns_logging do
|
89
|
+
desc 'Lists the current config for domain(s). ' \
|
90
|
+
'This command should be run from the account the hosted zone(s) reside.' \
|
91
|
+
"\n\toptionally specify DOMAINS='foo.com,foobar.com' to specify the hosted zones to activate." \
|
92
|
+
"\n\t\tComma delimited list."
|
93
|
+
task list_query_configs: %w(ensure_aws_credentials) do
|
94
|
+
route53 = Dev::Aws::Route53.new(ENV['DOMAINS'].to_s.strip.split(','))
|
95
|
+
route53.list_query_configs
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
104
|
+
end
|
105
|
+
end
|
106
|
+
end
|
@@ -120,61 +120,6 @@ module Dev
|
|
120
120
|
end
|
121
121
|
end
|
122
122
|
end
|
123
|
-
|
124
|
-
# Create the rake task for the hosted zone method
|
125
|
-
def create_dns_logging_activate_task!
|
126
|
-
# Have to set a local variable to be accessible inside of the instance_eval block
|
127
|
-
exclude = @exclude
|
128
|
-
|
129
|
-
DEV_COMMANDS_TOP_LEVEL.instance_eval do
|
130
|
-
namespace :aws do
|
131
|
-
return if exclude.include?(:dns_logging)
|
132
|
-
|
133
|
-
namespace :hosted_zone do
|
134
|
-
namespace :dns_logging do
|
135
|
-
desc 'Activates query logging for all hosted zones by default.' \
|
136
|
-
'This command should be run from the account the hosted zone(s) reside.' \
|
137
|
-
"\n\toptionally specify HOSTED_ZONE_GROUP='arn:aws:logs:REGION:ACCOUNT_ID:' to specify the ARN of the target log group." \
|
138
|
-
"\n\toptionally specify DOMAINS='foo.com,foobar.com' to specify the hosted zones to activate." \
|
139
|
-
"\n\t\tComma delimited list."
|
140
|
-
task :activate do
|
141
|
-
route53 = Dev::Aws::Route53.new
|
142
|
-
route53.hosted_zones(ENV['DOMAINS'].to_s.strip.split(','))
|
143
|
-
# Use user defined log group. Otherwise, go get the default.
|
144
|
-
log_group = (ENV['HOSTED_ZONE_GROUP'] || Dev::Aws::Parameter.new.get_value('/Firespring/Internal/Route53/hosted-zone/log-group-arn'))
|
145
|
-
route53.activate_query_logging(log_group)
|
146
|
-
end
|
147
|
-
end
|
148
|
-
end
|
149
|
-
end
|
150
|
-
end
|
151
|
-
end
|
152
|
-
|
153
|
-
# Create the rake task for the hosted zone method
|
154
|
-
def create_dns_logging_deactivate_task!
|
155
|
-
# Have to set a local variable to be accessible inside of the instance_eval block
|
156
|
-
exclude = @exclude
|
157
|
-
|
158
|
-
DEV_COMMANDS_TOP_LEVEL.instance_eval do
|
159
|
-
namespace :aws do
|
160
|
-
return if exclude.include?(:dns_logging_de)
|
161
|
-
|
162
|
-
namespace :hosted_zone do
|
163
|
-
namespace :dns_logging do
|
164
|
-
desc 'Deactivates query logging for all hosted zones by default. ' \
|
165
|
-
'This command should be run from the account the hosted zone(s) reside.' \
|
166
|
-
"\n\toptionally specify DOMAINS='foo.com,foobar.com' to specify the hosted zones to activate." \
|
167
|
-
"\n\t\tComma delimited list."
|
168
|
-
task :deactivate do
|
169
|
-
route53 = Dev::Aws::Route53.new
|
170
|
-
route53.hosted_zones(ENV['DOMAINS'].to_s.strip.split(','))
|
171
|
-
route53.deactivate_query_logging
|
172
|
-
end
|
173
|
-
end
|
174
|
-
end
|
175
|
-
end
|
176
|
-
end
|
177
|
-
end
|
178
123
|
end
|
179
124
|
end
|
180
125
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: firespring_dev_commands
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.32.pre.alpha.
|
4
|
+
version: 2.1.32.pre.alpha.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Firespring
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-04-
|
11
|
+
date: 2024-04-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -399,6 +399,7 @@ files:
|
|
399
399
|
- lib/firespring_dev_commands/target_process/user_story.rb
|
400
400
|
- lib/firespring_dev_commands/target_process/user_story_history.rb
|
401
401
|
- lib/firespring_dev_commands/templates/aws.rb
|
402
|
+
- lib/firespring_dev_commands/templates/aws/services/route53.rb
|
402
403
|
- lib/firespring_dev_commands/templates/base_interface.rb
|
403
404
|
- lib/firespring_dev_commands/templates/certificate.rb
|
404
405
|
- lib/firespring_dev_commands/templates/ci.rb
|