aws::efs-access-point

Creates an EFS Access Point.

Example

aws::efs-access-point efs-access-point
    file-system: $(aws::efs-file-system efs-file-system)

    posix-user
        user-id: 42950
        group-id: 42949
    end

    tags: {
        "Name": "example-efs-access-point"
    }
end

Attributes

Attribute Description
file-system The file system that the access point provides access to. (Required)
posix-user subresource

The operating system user and group applied to all file system requests made using the access point.

user-id
The POSIX user ID used for all file system operations using the parent access point. Valid values are between 0 to 4294967295.
group-id
The POSIX user ID used for all file system operations using the parent access point. Valid values are between 0 to 4294967295.
secondary-group-ids list
The list of secondary POSIX group IDs used for all file system operations using the parent access point.
root-directory subresource

The directory on the file system that the access point exposes as its root to NFS clients using the access point.

path
The path on the EFS file system to expose as the root directory to NFS clients using the access point. (Required)
creation-info subresource

The POSIX IDs and permissions to apply to the access point’s RootDirectory.

owner-group-id
The POSIX group ID to apply to the root directory. Valid values are between 0 to 4294967295.
owner-user-id
The POSIX user ID to apply to the root directory. Valid values are between 0 to 4294967295.
permissions
The octal number representation of the POSIX permissions to apply to the root directory. Valid values are 0000, 0700, 0770, 0777, 0111, 0222, 0333, 0444, 0555, 0666 or 0740.
tags map The tags for the access point.

Outputs

Attribute Description
id The ID of the access point.