cfn-vpn 1.7.0 → 1.8.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 +4 -4
- data/Dockerfile +1 -1
- data/docs/modifying.md +1 -1
- data/docs/yaml-config.md +1 -1
- data/lib/cfnvpn/actions/modify.rb +2 -1
- data/lib/cfnvpn/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 150d5c310df91f38fb0136841949f85cacfb5e3cce61dde33b6a5d8e5835c6c5
|
|
4
|
+
data.tar.gz: 491ec001fe6e315be750c19003eeb18d3b2fd63a03630477a89531f8454f8938
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3bc9a43cd62eeb967b52589cfe7e816313cd4d260065e5a17317f1d19e9b9b8afc5d00279800854f0c4f8d319b8d7febf2b0a0ec3f7f79cea0bdbc2853cf16d6
|
|
7
|
+
data.tar.gz: 0d10b220d8fbfb78f53ab0b0f3e0f586f0214b759a7ba6f605b8b8a05c4eeebb718b91618128e2414dd7c2b31792224287363836d5820717718ed5347e6b73fd
|
data/Dockerfile
CHANGED
data/docs/modifying.md
CHANGED
|
@@ -34,7 +34,7 @@ cfn-vpn params [name] --diff-yaml cfnvpn.[name].yaml
|
|
|
34
34
|
cfn-vpn configuration can be managed through a YAML file using the `modify` command to apply the config changes to the vpn stack. See the [YAML docs](yaml-config.md) for config options.
|
|
35
35
|
|
|
36
36
|
```
|
|
37
|
-
cfn-vpn modify [name] --
|
|
37
|
+
cfn-vpn modify [name] --param-yaml cfnvpn.[name].yaml
|
|
38
38
|
```
|
|
39
39
|
|
|
40
40
|
a cloudformation changeset is created with the desired changes and approval is asked
|
data/docs/yaml-config.md
CHANGED
|
@@ -7,7 +7,7 @@ cfn-vpn configuration can be managed through a YAML file using the `modify` comm
|
|
|
7
7
|
run the `modify` command and supply the yaml file to apply the changes
|
|
8
8
|
|
|
9
9
|
```sh
|
|
10
|
-
cfn-vpn routes [name] --
|
|
10
|
+
cfn-vpn routes [name] --param-yaml cfnvpn.[name].yaml
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
## Dump Current Config to YAML File
|
|
@@ -73,7 +73,8 @@ module CfnVpn::Actions
|
|
|
73
73
|
|
|
74
74
|
if @options[:param_yaml]
|
|
75
75
|
CfnVpn::Log.logger.debug "Loading config from YAML file #{@options[:param_yaml]}"
|
|
76
|
-
|
|
76
|
+
yaml_config = CfnVpn::Config.get_config_from_yaml_file(@options[:param_yaml])
|
|
77
|
+
@config = @config.merge(yaml_config)
|
|
77
78
|
else
|
|
78
79
|
CfnVpn::Log.logger.debug "Loading config from options"
|
|
79
80
|
@options.each do |key, value|
|
data/lib/cfnvpn/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cfn-vpn
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.8.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Guslington
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-08-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|