Guided Walkthroughs
Step-by-step configuration wizards for your environment
Dedicated Security Account
AWS Backup Strategy
VPC Connectivity Setup
Automated Patching
All Guides
Configuration to provision a new EFS file system and attach it to a VPC with options to customize encryption, backup, access, and performance settings.
The following settings are available in this template:
AWSTemplateFormatVersion: '2010-09-09'
Description: ''
Resources:
EfsFileSystem:
Type: 'AWS::EFS::FileSystem'
Properties:
Encrypted: true
PerformanceMode: generalPurpose
ThroughputMode: bursting
BackupPolicy:
Status: ENABLED
MountTargetEfsFileSystem1:
Type: 'AWS::EFS::MountTarget'
Properties:
FileSystemId:
Ref: EfsFileSystem
SubnetId: ''
SecurityGroups:
- ''
Parameters: {}
Metadata: {}
Conditions: {}