aws::efs-mount-target¶
Creates an EFS Mount Target.
Example¶
aws::efs-mount-target efs-mount-target
    file-system: $(aws::efs-file-system efs-file-system)
    ip-address: "10.0.0.16"
    subnet: $(aws::subnet subnet-efs)
    security-groups: [
        $(aws::security-group security-group-efs)
    ]
end
Attributes¶
| Attribute | Description | 
|---|---|
| file-system | The file system for which to attach a mount target. (Required) | 
| ip-address | The valid IPv4 address within the address range of the specified subnet. | 
| subnet | The subnet to add the mount target in. (Required) | 
| security-groups list | The security groups currently in effect for a mount target. Maximum allowed items are 5. (Required) | 
Outputs¶
| Attribute | Description | 
|---|---|
| id | The ID of the mount target. |