-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcreate_snapshot.yaml
More file actions
48 lines (39 loc) · 1.04 KB
/
create_snapshot.yaml
File metadata and controls
48 lines (39 loc) · 1.04 KB
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
Description: "Create a snapshot of an FSx for ONTAP volume."
Parameters:
FileSystemId:
Description: "The File System ID."
Type: String
SecretArn:
Description: "The Secret ARN that holds the fsxadmin password."
Type: String
SecretKey:
Description: "The key to use within the AWS secret that holds the fsxadmin password"
Default: "password"
Type: String
LinkArn:
Description: "The ARN to the Lambda link function."
Type: String
SvmName:
Description: "The SVM Name."
Type: String
VolumeName:
Description: "The Volume Name."
Type: String
SnapshotName:
Description: "The name to assigned to the Snapshot."
Type: String
Resources:
Snapshot:
Type: "NetApp::FSxN::Snapshot"
Properties:
FsxAdminPasswordSource:
Secret:
SecretArn: !Ref SecretArn
SecretKey: !Ref SecretKey
FileSystemId: !Ref FileSystemId
LinkArn: !Ref LinkArn
SVM:
Name: !Ref SvmName
Volume:
Name: !Ref VolumeName
Name: !Ref SnapshotName