Skip to content

Commit 92a9f7d

Browse files
authored
Merge pull request #119 from NetApp/ckeith-update-1
Fixed an issue with someone not specifying a properly formatted FsId.
2 parents 672f40e + ca49903 commit 92a9f7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fsx-ontap-aws-cli-scripts/create_fsxn_svm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ if [ -z "$fsid" ]; then
8585
fi
8686
#
8787
# Create the SVM
88-
aws fsx create-storage-virtual-machine --name $svmName --region=$region --file-system-id $fsid --output=json > $tmpout 2>&1
88+
aws fsx create-storage-virtual-machine --name $svmName --region=$region --file-system-id "$fsid" --output=json > $tmpout 2>&1
8989

9090
if [ $? != "0" ]; then
9191
echo "Failed to create storage virtual machine." 1>&2

0 commit comments

Comments
 (0)