-
Notifications
You must be signed in to change notification settings - Fork 0
/
WIP-aws_cf_maprcluster1.7_MEP41_secure.yml
463 lines (463 loc) · 20.9 KB
/
WIP-aws_cf_maprcluster1.7_MEP41_secure.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
---
AWSTemplateFormatVersion: '2010-09-09'
Description: 'Setup a MapR cluster'
# This template OPTIONALLY creates an OpenVPN instance.
# This is just a template. The AMI images listed are invalid. Please replace with
# valid AMI images before use. Also, update the SSH_USER to match the root user
# for your AMI.
Parameters:
clusterName:
Description: Cluster name
Default: my.cluster.com
Type: String
#MaxLength:
#AllowedPattern:
MEP:
Description: MapR Ecosystem Pack version
Type: String
AllowedValues: [ 3.0.1, 4.0.0, 4.1.0 ]
Default: 4.1.0
provisioningTemplate:
Description: Auto-provisioning templates for specific use cases
Type: String
AllowedValues: ["Converged-Platform", "Data-Lake", "Data-Exploration", "Operational-Analytics", "Operational-Analytics-using-MapR-DB", "Real-Time-Analytics-with-Spark", "Real-Time-Analytics-with-Streams", "Custom-Configuration" ]
Default: "Converged-Platform"
nodeCount:
Description: Number of nodes in cluster
Type: Number
Default: 3
useInstanceStore:
Description: If the machine type supports instance stores (ephemeral disks), use only those disks. No EBS volumes will be attached.
Type: String
AllowedValues: [True, False]
Default: False
diskType:
Description: AWS EBS volume types - http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html. Min for st1 volumes is 500G
Type: String
AllowedValues: [ "gp2", "io1", "st1" ]
Default: "gp2"
diskSize:
Description: GB
Type: Number
Default: 100
diskCount:
Description: Number of EBS volumes per node
Type: Number
AllowedValues: [ 1, 2, 3, 4, 5, 6, 7, 8 ]
Default: 3
clusterAdminPassword:
Description: Password for user mapr. mapr is setup as the cluster admin user. You use it to login to the MapR installer UI as well as the web UI of different components. The uid and gid for this user is set to 5000.
Type: String
NoEcho: True
AllowedPattern: ".+"
ConstraintDescription: must provide a password
clusterAdminPasswordConfirm:
Description: Confirm the password you typed in above.
Type: String
NoEcho: True
keyName:
Description: AWS key pair used to create nodes
Type: AWS::EC2::KeyPair::KeyName
AllowedPattern: ".+"
ConstraintDescription: must select an existing EC2 KeyPair
instanceType:
Description: AWS Instance types - https://aws.amazon.com/ec2/instance-types
Type: String
AllowedValues: [ m4.xlarge, m4.2xlarge, m4.4xlarge, m4.10xlarge, m4.16xlarge, d2.xlarge, d2.2xlarge, d2.4xlarge, d2.8xlarge, h1.2xlarge, h1.4xlarge, h1.8xlarge, h1.16xlarge, i3.large, i3.xlarge, i3.2xlarge, i3.4xlarge, i3.8xlarge, m3.xlarge, m3.2xlarge, c4.2xlarge, c4.4xlarge, c4.8xlarge, c3.2xlarge, c3.4xlarge, c3.8xlarge, r4.large, r4.xlarge, r4.2xlarge, r4.4xlarge, r4.8xlarge, r3.large, r3.xlarge, r3.2xlarge, r3.4xlarge, r3.8xlarge ]
Default: m4.xlarge
installerOnItsOwn:
Description: Setup the cluster installer on a separate node
Type: String
AllowedValues: [true, false]
Default: true
IAMInstanceProfile:
Description: IAM role name
Type: String
Default: maprinstaller
useExistingSubnet:
Description: Id of subnet to be used (e.g. subnet-123456). The subnet should be able to access the Internet. Leave it empty to create a new VPC and subnets.
Type: String
Default: ""
securityGroups:
Description: Security group ids for an existing subnet if specified above, otherwise empty. Include all required security group ids including "default".
Type: CommaDelimitedList
Default: ""
installOpenVPN:
Description: Enable public Internet access to MapR cluster with OpenVPN. If you are using an existing subnet, this is ignored.
Type: String
AllowedValues: [true, false]
Default: true
openVPNuser:
Description: OpenVPN login user
Type: String
Default: openvpn
openVPNpassword:
Description: OpenVPN login user password. Always use a strong password to protect your cluster.
Type: String
NoEcho: True
openVPNpasswordConfirm:
Description: Confirm the password typed in above
Type: String
NoEcho: True
publicAccessCIDR:
Description: Recommended to restrict to your corporate IP range
Type: String
Default: 0.0.0.0/0
AllowedPattern: "(\\d{1,3})\\.(\\d{1,3})\\.(\\d{1,3})\\.(\\d{1,3})/(\\d{1,2})"
Rules:
MapRPasswordVerify:
Assertions:
- Assert: !Equals [ !Ref clusterAdminPassword, !Ref clusterAdminPasswordConfirm ]
AssertDescription: “Cluster admin passwords do not match"
OpenVPNPasswordVerify:
Assertions:
- Assert: !Equals [ !Ref openVPNpassword, !Ref openVPNpasswordConfirm ]
AssertDescription: “OpenVPN user passwords do not match"
Conditions:
InstallOpenVPN: !And [!Equals [!Ref installOpenVPN, true], !Equals [!Ref useExistingSubnet, ""]]
CreateVPC: !Equals [!Ref useExistingSubnet, ""]
UseInstallerNode: !Equals [!Ref installerOnItsOwn, false]
Metadata:
AWS::CloudFormation::Interface:
ParameterGroups:
-
Label:
default: "AWS Infrastructure Configuration"
Parameters:
- keyName
- IAMInstanceProfile
-
Label:
default: "MapR Cluster Configuration"
Parameters:
- clusterName
- clusterAdminPassword
- clusterAdminPasswordConfirm
- MEP
- provisioningTemplate
- nodeCount
- installerOnItsOwn
-
Label:
default: "Node Configuration"
Parameters:
- instanceType
- useInstanceStore
- diskCount
- diskType
- diskSize
-
Label:
default: "Network, Access and Security"
Parameters:
- useExistingSubnet
- securityGroups
- installOpenVPN
- openVPNuser
- openVPNpassword
- openVPNpasswordConfirm
- publicAccessCIDR
Mappings:
Variables:
Keys:
SSHUSER: "centos"
MAPRCORE: "6.0.0"
# Update the proxy settings if your environment requires proxy. NOPROXY must include 169.254.169.254,localhost
HTTPPROXY: ""
HTTPSPROXY: ""
NOPROXY: ""
StanzaURL:
"Custom-Configuration":
URL: ""
serviceTemplate: ""
"Converged-Platform":
URL: "https://raw.githubusercontent.com/mapr/mapr-cloud-templates/master/1.6/aws/mapr-core.yml"
serviceTemplate: "template-05-converged"
"Data-Lake":
URL: "https://raw.githubusercontent.com/mapr/mapr-cloud-templates/master/1.6/aws/mapr-core.yml"
serviceTemplate: "template-10-hadoop"
"Data-Exploration":
URL: "https://raw.githubusercontent.com/mapr/mapr-cloud-templates/master/1.6/aws/mapr-core.yml"
serviceTemplate: "template-20-drill"
"Operational-Analytics":
URL: "https://raw.githubusercontent.com/mapr/mapr-cloud-templates/master/1.6/aws/mapr-core.yml"
serviceTemplate: "template-30-maprdb2"
"Operational-Analytics-using-MapR-DB":
URL: "https://raw.githubusercontent.com/mapr/mapr-cloud-templates/master/1.6/aws/mapr-core.yml"
serviceTemplate: "template-30-maprdb"
"Real-Time-Analytics-with-Spark":
URL: "https://raw.githubusercontent.com/mapr/mapr-cloud-templates/master/1.6/aws/mapr-core.yml"
serviceTemplate: "template-60-spark"
"Real-Time-Analytics-with-Streams":
URL: "https://raw.githubusercontent.com/mapr/mapr-cloud-templates/master/1.6/aws/mapr-core.yml"
serviceTemplate: "template-40-maprstreams"
RegionMap:
#If you update these AMI, make sure to update the login user used in this template
#Update with AMI before using the template
us-east-1: # N Viriginia
AMI: ami-d78205ad
us-east-2: # Ohio
AMI: ami-7d517918
us-west-1: # California
AMI: ami-f494ab94
us-west-2: # Oregon
AMI: ami-ec0caf94
# ca-central-1: # Québec
# AMI: ami-dbe28fbb
# eu-central-1: # Frankfurt
# AMI: ami-9bf712f4
# eu-west-1: # Ireland
# AMI: ami-7abd0209
# eu-west-2: # London
# AMI: ami-7abd0209
# ap-southeast-1: # Singapore
# AMI: ami-7abd0209
# ap-southeast-2: # Sydney
# AMI: ami-7abd020
# ap-south-1 : # Mumbai
# AMI: ami-7abd0209
# ap-northeast-1: # Tokoyo
# AMI: ami-7abd0209
# ap-northeast-2: # Seoul
# AMI: ami-7abd0209
# sa-east-1: # São Paulo
# AMI: ami-7abd0209
Resources:
VPC:
Type: AWS::CloudFormation::Stack
Condition: CreateVPC
Properties:
TemplateURL: https://s3.us-east-2.amazonaws.com/mapr-installer/templates/aws/aws_cf_vpc_openvpn.yml
Parameters:
name: !Ref clusterName
publicAccessCIDR: !Ref publicAccessCIDR
installOpenVPN: !Ref installOpenVPN
keyName: !Ref keyName
openVPNuser: !Ref openVPNuser
openVPNpassword: !Ref openVPNpassword
ClusterNodes:
Type: AWS::CloudFormation::Stack
Properties:
TemplateURL: https://s3.us-east-2.amazonaws.com/mapr-installer/templates/aws/aws_cf_maprcluster_nodes.yml
Parameters:
clusterName: !Ref clusterName
nodeCount: 0
diskType: !Ref diskType
diskSize: !Ref diskSize
diskCount: !Ref diskCount
privateSubnets: !If [CreateVPC, !GetAtt VPC.Outputs.PrivateSubnet, !Ref useExistingSubnet]
keyName: !Ref keyName
instanceType: !Ref instanceType
imageId: !FindInMap [ RegionMap, !Ref "AWS::Region", "AMI" ]
securityGroups: !Join [",", !If [CreateVPC, [!GetAtt VPC.Outputs.DefaultSecurityGroup], !Ref securityGroups]]
userData:
Fn::Base64: !Sub
- |
#!/bin/bash
M_HOME=/opt/mapr/installer
[ -n "${HTTP_PROXY}" ] && echo export http_proxy=${HTTP_PROXY} >> $M_HOME/conf/env
[ -n "${HTTPS_PROXY}" ] && echo export https_proxy=${HTTPS_PROXY} >> $M_HOME/conf/env
[ -n "${NO_PROXY}" ] && echo export no_proxy=${NO_PROXY} >> $M_HOME/conf/env
[ -f $M_HOME/conf/env ] && cat $M_HOME/conf/env >> /etc/environment
- HTTP_PROXY: !FindInMap [Variables, "Keys", "HTTPPROXY"]
HTTPS_PROXY: !FindInMap [Variables, "Keys", "HTTPSPROXY"]
NO_PROXY: !FindInMap [Variables, "Keys", "NOPROXY"]
InstallWaitHandle:
Type: AWS::CloudFormation::WaitConditionHandle
InstallWaitCondition:
Type: AWS::CloudFormation::WaitCondition
DependsOn: MaprInstaller
Properties:
Handle: !Ref "InstallWaitHandle"
Timeout: "3000"
MaprInstaller:
Type: AWS::EC2::Instance
DependsOn: ClusterNodes
Properties:
Tags:
- Key: Name
Value: !Join ["-", [!Ref clusterName, "Installer"]]
ImageId:
Fn::FindInMap:
- RegionMap
- Ref: AWS::Region
- AMI
KeyName:
Ref: keyName
InstanceType: !If [UseInstallerNode, !Ref instanceType, t2.small]
IamInstanceProfile:
Ref: IAMInstanceProfile
NetworkInterfaces:
- DeleteOnTermination: "true"
DeviceIndex: 0
SubnetId: !If [CreateVPC, !GetAtt VPC.Outputs.PrivateSubnet, !Ref useExistingSubnet]
GroupSet: !If [CreateVPC, !Ref "AWS::NoValue", !Ref securityGroups]
UserData:
Fn::Base64: !Sub
- |
#!/bin/bash
MAPR_CORE=${MAPR_CORE}
SSH_USER=${SSH_USER}
M_HOME=/opt/mapr/installer
M_USER_PWD=${clusterAdminPassword}
statusFile=$M_HOME/logs/cf_status
[ -n "${HTTP_PROXY}" ] && echo export http_proxy=${HTTP_PROXY} >> $M_HOME/conf/env
[ -n "${HTTPS_PROXY}" ] && echo export https_proxy=${HTTPS_PROXY} >> $M_HOME/conf/env
[ -n "${NO_PROXY}" ] && echo export no_proxy=${NO_PROXY} >> $M_HOME/conf/env
[ -f $M_HOME/conf/env ] && cat $M_HOME/conf/env >> /etc/environment && . $M_HOME/conf/env
if ! wget -q -t 10 --retry-connrefused --waitretry=30 http://aws.amazon.com; then
echo "{ \"Status\" : \"FAILURE\", \"UniqueId\" : \"${clusterName}\", \"Data\" : \"No Internet connection\", \"Reason\" : \"No Internet Connection\" }" > $statusFile
curl -T $statusFile '${InstallWaitHandle}'
exit 1
fi
$M_HOME/bin/mapr-setup.sh -y upgrade
service mapr-installer start
systemctl enable mapr-installer
# FIX FOR IN-1390
sed -i -e 's/private_ip_address/private_dns_name/' $M_HOME/ansible/playbooks/roles/aws/tasks/main.yml
sed -i -e 's/local-ipv4/local-hostname/' $M_HOME/ansible/playbooks/roles/aws/tasks/main.yml
M_USER=$(grep installer_admin_id "$M_HOME/data/properties.json" | cut -d\" -f4)
M_GROUP=$(grep installer_admin_group "$M_HOME/data/properties.json" | cut -d\" -f4)
echo "$M_USER:$M_USER_PWD" | chpasswd
if ( $? != 0); then
echo "{ \"Status\" : \"FAILURE\", \"UniqueId\" : \"${clusterName}\", \"Data\" : \"Unable to reset password for $M_USER\", \"Reason\" : \"Unable to reset password for $M_USER\" }" > $statusFile
curl -T $statusFile '${InstallWaitHandle}'
exit 1
fi
if [ -f $M_HOME/bin/aws/keypair ]; then
$M_HOME/bin/aws/keypair init ${clusterName}
if [ ! -f $M_HOME/data/aws_key ]; then
echo "{ \"Status\" : \"FAILURE\", \"UniqueId\" : \"${clusterName}\", \"Data\" : \"AWS Key file not found. You may be using an old installer.\", \"Reason\" : \"AWS Key file not found. You may be using an old installer.\" }" > $statusFile
curl -T $statusFile '${InstallWaitHandle}'
exit 1
fi
else
# Create key to be used by MapR for backward compatibility with 1.6
key=$(date | md5sum | head -c 8)
key="${clusterName}-$key"
key_file=$M_HOME/data/$key
source $M_HOME/build/installer/bin/activate
ssh-keygen -b 2048 -t rsa -f $key_file -q -N '' -C "maprinstaller@${clusterName}"
aws ec2 import-key-pair --key-name $key --region ${AWS::Region} --public-key-material "`cat $key_file.pub`"
echo $key > $M_HOME/data/aws_key
deactivate
fi
key=$(cat $M_HOME/data/aws_key)
key_file=$M_HOME/data/$key
auth_file=$(getent passwd $SSH_USER | cut -d':' -f6)
cat $key_file.pub >> $auth_file/.ssh/authorized_keys
source $M_HOME/build/installer/bin/activate
stackId=$(aws cloudformation describe-stack-resource --region ${AWS::Region} --stack-name ${AWS::StackName} --logical-resource-id ClusterNodes --query 'StackResourceDetail.PhysicalResourceId' --output text)
asgId=$(aws cloudformation describe-stack-resources --region ${AWS::Region} --stack-name $stackId --query 'StackResources[?ResourceType==`AWS::AutoScaling::AutoScalingGroup`].PhysicalResourceId' --output text)
deactivate
chown $M_USER:$M_GROUP $key_file
chmod 400 $key_file
input=$M_HOME/conf/stanza_input.yml
if ${installerOnItsOwn}; then useInstaller=False; else useInstaller=True; fi
if ${useInstanceStore}; then use_ephemeral=True; else use_ephemeral=False; fi
echo "environment.mapr_core_version=$MAPR_CORE " > $input
echo "config.mep_version=${MEP} " >> $input
echo "config.cluster_name=${clusterName} " >> $input
echo "config.ssh_id=$SSH_USER " >> $input
echo "config.ssh_key_file=$key_file " >> $input
echo "config.provider.config.aws_region=${AWS::Region} " >> $input
echo "config.provider.config.cf_stack_name=${AWS::StackName} " >> $input
echo "config.provider.config.auto_scaling_group=$asgId " >> $input
echo "config.provider.config.count=${nodeCount} " >> $input
echo "config.provider.config.disk_type=${diskType} " >> $input
echo "config.provider.config.disk_size=${diskSize} " >> $input
echo "config.provider.config.disk_count=${diskCount} " >> $input
echo "config.provider.config.key_name=$key " >> $input
echo "config.provider.config.use_installer=$useInstaller " >> $input
echo "config.provider.config.use_ephemeral=$use_ephemeral " >> $input
services="config.services={\"mapr-core\": {\"version\": \"$MAPR_CORE\"}}"
chown $M_USER:$M_USER $input
status="SUCCESS"
data="MapR Installer"
# Run stanza if an URL is defined
url=${URL}
wget -q -t 10 --retry-connrefused --waitretry=30 --no-check-certificate https://localhost:9443/api/swagger.json -O /tmp/swagger.json
if [ -n "$url" ]; then
if [ -n "${serviceTemplate}" ]; then
services=$(echo $services | sed -e "s/}}/}, \"${serviceTemplate}\": {}}/")
fi
echo "$services " >> $input
cd $M_HOME
cmd="bin/mapr-installer-cli install -f -n -t $url -u $M_USER:$M_USER_PWD@localhost:9443 -o @$input -o config.cluster_admin_password=$M_USER_PWD -o config.db_admin_password=$M_USER_PWD"
sudo -u $M_USER $cmd || status="FAILURE"
if [ "$status" == "SUCCESS" ]; then
t=$(curl -s -k "https://$M_USER:$M_USER_PWD@localhost:9443/api/config/services?name=mapr-webserver")
p=$(echo $t | sed -e 's/.*"ui_ports":\[\([^,]*\).*/\1/')
data=";"
for h in $(echo $t | sed -e 's/.*"hosts":\[\([^]]*\).*/\1/' | sed -e 's/,/ /g' -e 's/"//g'); do
data+="https://$h:$p "
done
data+=";"
else
reason=$(tail -1 $M_HOME/logs/installer-cli.log)
hostname=$(hostname -f)
[ -z $reason ] && reason="Unable to determine failure reason. Probably failed early provisiong AWS resources. Check installer logs at https://$hostname:9443."
fi
else
input=$M_HOME/conf/config.yml
echo "environment: " > $input
echo " mapr_core_version: $MAPR_CORE " >> $input
echo "config: " >> $input
echo " ssh_id: $SSH_USER " >> $input
echo " ssh_key_file: $key_file " >> $input
echo " cluster_name: ${clusterName} " >> $input
echo " mep_version: ${MEP} " >> $input
echo " provider: " >> $input
echo " id: AWS " >> $input
echo " config: " >> $input
echo " aws_region: ${AWS::Region} " >> $input
echo " cf_stack_name: ${AWS::StackName} " >> $input
echo " auto_scaling_group: $asgId " >> $input
echo " count: ${nodeCount} " >> $input
echo " disk_type: ${diskType} " >> $input
echo " disk_size: ${diskSize} " >> $input
echo " disk_count: ${diskCount} " >> $input
echo " key_name: $key " >> $input
echo " hosts: [] " >> $input
echo " services: " >> $input
echo " mapr-core: " >> $input
echo " version: $MAPR_CORE " >> $input
cd $M_HOME
cmd="bin/mapr-installer-cli import -f -n --config -t $input -u $M_USER:$M_USER_PWD@localhost:9443"
sudo -u $M_USER $cmd || status="FAILURE"
if [ "$status" == "FAILURE" ]; then
reason=$(tail -1 $M_HOME/logs/installer-cli.log)
hostname=$(hostname -f)
[ -z $reason ] && reason="Unable to determine failure reason. Check installer logs at https://$hostname:9443."
fi
fi
echo "{ \"Status\" : \"$status\", \"UniqueId\" : \"${clusterName}\", \"Data\" : \"$data\", \"Reason\" : \"$reason\" }" > $statusFile
curl -T $statusFile '${InstallWaitHandle}'
- URL: !FindInMap [ StanzaURL, !Ref "provisioningTemplate", "URL" ]
serviceTemplate: !FindInMap [ StanzaURL, !Ref "provisioningTemplate", "serviceTemplate" ]
SSH_USER: !FindInMap [Variables, "Keys", "SSHUSER"]
MAPR_CORE: !FindInMap [Variables, "Keys", "MAPRCORE"]
HTTP_PROXY: !FindInMap [Variables, "Keys", "HTTPPROXY"]
HTTPS_PROXY: !FindInMap [Variables, "Keys", "HTTPSPROXY"]
NO_PROXY: !FindInMap [Variables, "Keys", "NOPROXY"]
Outputs:
ClusterName:
Description: Cluster name
Value: !Ref clusterName
MaprInstallerIp:
Description: MapR installer IP Address
Value: !GetAtt MaprInstaller.PrivateIp
MaprInstallerUrl:
Description: MapR installer URL
Value: !Join [ "", ["https://", !GetAtt MaprInstaller.PrivateIp, ":9443/#/status"]]
SSHUser:
Description: SSH userid
Value: !FindInMap [Variables, "Keys", "SSHUSER"]
OpenVPNIp:
Condition: InstallOpenVPN
Description: OpenVPN IP Address.
Value: !GetAtt VPC.Outputs.OpenVPNIp
OpenVPNUrl:
Condition: InstallOpenVPN
Description: OpenVPN Admin URL.
Value: !GetAtt VPC.Outputs.OpenVPNUrl