parent | title | nav_exclude |
---|---|---|
Infrastructure Catalog |
AWS Data-Lake-Users |
false |
Automates the management of users and groups in an S3 data lake.
- Designed to be used in combination with the
aws/data-lake
module.
No requirements.
The following providers are used by this module:
-
local
-
aws
The following input variables are required:
Description: Standard name_prefix
module input. (Prefix counts towards 64-character max length for certain resource types.)
Type: string
Description: Standard environment
module input.
Type:
object({
vpc_id = string
aws_region = string
public_subnets = list(string)
private_subnets = list(string)
})
Description: Standard resource_tags
module input.
Type: map(string)
Description: The name of the S3 bucket to which users will be granted access.
Type: string
Description: Mapping of group names to list of objects containing the applicable permissions.
Example:
group_permissions = {
uploaders = [
{
path = "data/uploads/"
read = true
write = true
}
]
global_readers = [
{
path = "/"
read = true
write = false
}
]
global_writers = [
{
path = "/"
read = true
write = true
}
]
}
Type:
map(list(object({
path = string
read = bool
write = bool
})))
Description: A set (unique list) of user IDs.
Type: set(string)
Description: A mapping of user IDs to group name. Example:
{
jake = ["global_readers"]
jane = ["global_readers", "uploader"]
}
Type: map(list(string))
Description: The default keybase.io user ID to use for PGP password encryption.
If you do not yet have keybase ID, please install Keybase and then use Keybase to publish a new PGP key.
To install Keybase:
- Windows Users: choco install keybase
- MacOSX Users: brew cask install keybase
To generate and publish a PGP key:
keybase pgp gen
Type: string
No optional input.
The following outputs are exported:
Description: Mapping of user IDs to their secret access keys (encrypted).
Description: Standard Output. Human-readable summary of what was created by the module and (when applicable) how to access those resources.
Source code for this module is available using the links below.
NOTE: This documentation was auto-generated using
terraform-docs
and s-infra
from slalom.dataops
.
Please do not attempt to manually update this file.