File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ RUN apt-get update -qq \
9
9
ENV EASYRSA=/usr/share/easy-rsa
10
10
ENV EASYRSA_BATCH=yes
11
11
12
- ARG CFNVPN_VERSION="1.5 .0"
12
+ ARG CFNVPN_VERSION="1.6 .0"
13
13
14
14
COPY . /src
15
15
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ def render(name, config)
83
83
network_assoc_dependson << "ClientVpnTargetNetworkAssociation#{ suffix } "
84
84
end
85
85
86
- if config [ :default_groups ] . any?
86
+ if ! config [ :default_groups ] . nil? && config [ :default_groups ] . any?
87
87
config [ :default_groups ] . each do |group |
88
88
EC2_ClientVpnAuthorizationRule ( :"TargetNetworkAuthorizationRule#{ group . resource_safe } " [ 0 ..255 ] ) {
89
89
Condition ( :EnableSubnetAssociation )
Original file line number Diff line number Diff line change 1
1
module CfnVpn
2
- VERSION = "1.5 .0" . freeze
2
+ VERSION = "1.6 .0" . freeze
3
3
CHANGE_SET_VERSION = VERSION . gsub ( '.' , '-' ) . freeze
4
4
end
You can’t perform that action at this time.
0 commit comments