https://github.com/MitocGroup/terraform-aws-glue-dev-endpoint
Terraform code to create, update or delete AWS Glue dev endpoint(s)
https://github.com/MitocGroup/terraform-aws-glue-dev-endpoint
Last synced: 5 months ago
JSON representation
Terraform code to create, update or delete AWS Glue dev endpoint(s)
- Host: GitHub
- URL: https://github.com/MitocGroup/terraform-aws-glue-dev-endpoint
- Owner: MitocGroup
- License: mpl-2.0
- Created: 2019-01-07T14:10:37.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-07-23T16:16:59.000Z (over 5 years ago)
- Last Synced: 2024-11-08T11:50:09.582Z (5 months ago)
- Language: HCL
- Size: 10.7 KB
- Stars: 15
- Watchers: 8
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - MitocGroup/terraform-aws-glue-dev-endpoint - Terraform code to create, update or delete AWS Glue dev endpoint(s) (HCL)
README
# aws_glue_dev_endpoint
Provides a Glue Dev Endpoint resource.
## input variables
| Name | Description | Type | Default | Required |
|------|-------------|:----:|:-----:|:-----:|
|aws_region|This is the AWS region.|string|us-east-1|Yes|
|glue_endpoint_name|The name to be assigned to the new DevEndpoint.|string|my_dev_endpoint|Yes|
|glue_endpoint_role|The IAM role for the DevEndpoint.|string|arn:aws:iam::111111111111:role/my_role|Yes|
|glue_endpoint_security_group_ids|Security group IDs for the security groups to be used by the new DevEndpoint.|list|[]|No|
|glue_endpoint_subnet_id|The subnet ID for the new DevEndpoint to use.|string||No|
|glue_endpoint_public_keys|A list of public keys to be used by the DevEndpoints for authentication. The use of this attribute is preferred over a single public key because the public keys allow you to have a different private key per client.|list|[]|No|
|glue_endpoint_number_of_dpus|The number of AWS Glue Data Processing Units (DPUs) to allocate to this DevEndpoint.|string||No|
|glue_endpoint_extra_python_libraries|Path(s) to one or more Python libraries in an S3 bucket that should be loaded in your DevEndpoint. Multiple values must be complete paths separated by a comma.|string||No|
|glue_endpoint_extra_jars_libraries|Path to one or more Java Jars in an S3 bucket that should be loaded in your DevEndpoint.|string||No|
|glue_endpoint_security_configuration|The name of the SecurityConfiguration structure to be used with this DevEndpoint.|string||No|## output parameters
| Name | Description | Type |
|------|-------------|:----:|
|id|Dev Endpoint name|string|
|name|Dev Endpoint name|string|