Skip to content

Commit 211d53c

Browse files
authored
Merge pull request #92 from Ontotext-AD/GDB-12003
Added ability to provide additional custom user data scripts
2 parents 3e94cd4 + d34cde8 commit 211d53c

File tree

6 files changed

+117
-0
lines changed

6 files changed

+117
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
* Added new variable, deployment_restriction_tag to be used for tagging resources as part of the deployment. This allows for stricter IAM policies on certain (dangerous) actions
1616
* Changed graphdb_instance_volume policy to restrict ec2:AttachVolume and ec2:CreateVolume for only specifically tagged volumes
1717
* Extended graphdb_instance_volume_tagging by adding an additional constraint on ec2:CreateTags to allow instances that are already tagged with deployment_restriction_tag to be tagged with a Name
18+
* Added ability to attach custom user data scripts, templates or rendered templates to the EC2 Userdata
1819

1920
## 1.3.3
2021

README.md

+46
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,9 @@ Before you begin using this Terraform module, ensure you meet the following prer
175175
| asg\_enable\_instance\_refresh | Enables instance refresh for the GraphDB Auto scaling group. A refresh is started when any of the following Auto Scaling Group properties change: launch\_configuration, launch\_template, mixed\_instances\_policy | `bool` | `false` | no |
176176
| asg\_instance\_refresh\_checkpoint\_delay | Number of seconds to wait after a checkpoint. | `number` | `3600` | no |
177177
| graphdb\_enable\_userdata\_scripts\_on\_reboot | (Experimental) Modifies cloud-config to always run user data scripts on EC2 boot | `bool` | `false` | no |
178+
| graphdb\_user\_supplied\_scripts | A list of paths to user-supplied shell scripts (local files) to be injected as additional parts in the EC2 user\_data. | `list(string)` | `[]` | no |
179+
| graphdb\_user\_supplied\_rendered\_templates | A list of strings containing pre-rendered shell script content to be added as parts in EC2 user\_data. | `list(string)` | `[]` | no |
180+
| graphdb\_user\_supplied\_templates | A list of maps where each map contains a 'path' to the template file and a 'variables' map used to render it. | ```list(object({ path = string variables = map(any) }))``` | `[]` | no |
178181
| create\_s3\_kms\_key | Enable creation of KMS key for S3 bucket encryption | `bool` | `false` | no |
179182
| s3\_kms\_key\_admin\_arn | ARN of the role or user granted administrative access to the S3 KMS key. | `string` | `""` | no |
180183
| s3\_key\_rotation\_enabled | Specifies whether key rotation is enabled. | `bool` | `true` | no |
@@ -531,6 +534,49 @@ vpc_public_subnet_ids = ["subnet-123456","subnet-234567","subnet-345678"]
531534
vpc_private_subnet_ids = ["subnet-456789","subnet-567891","subnet-678912"]
532535
```
533536

537+
#### User Data Customization
538+
539+
- Providing user_supplied_scripts
540+
541+
Paths to local shell script files that will be injected into the instance user data.
542+
Each file should be a valid shell script.
543+
• Scripts are executed in the order provided.
544+
545+
```hcl
546+
user_supplied_scripts = [
547+
"${path.module}/scripts/init.sh",
548+
"${path.module}/scripts/configure.sh"
549+
]
550+
```
551+
- Providing user_supplied_rendered_templates
552+
553+
A list of raw shell script strings, already rendered, which will be included directly into the instance user data.
554+
555+
```hcl
556+
user_supplied_rendered_templates = [
557+
<<-EOT
558+
#!/bin/bash
559+
echo "Inline startup task"
560+
export ENV=production
561+
EOT
562+
]
563+
```
564+
565+
- Providing user_supplied_templates
566+
567+
A list of template files (plus variables) that will be rendered and included into the instance user data.
568+
569+
```hcl
570+
graphdb_user_supplied_templates = [
571+
{
572+
path = "s3_copy.sh.tpl"
573+
variables = {
574+
s3_bucket_url = "s3://test-bucket-zhekov"
575+
}
576+
}
577+
]
578+
```
579+
534580
## Single Node Deployment
535581

536582
This Terraform module can deploy a single instance of GraphDB.

main.tf

+3
Original file line numberDiff line numberDiff line change
@@ -340,6 +340,9 @@ module "graphdb" {
340340
asg_enable_instance_refresh = var.asg_enable_instance_refresh
341341
asg_instance_refresh_checkpoint_delay = var.asg_instance_refresh_checkpoint_delay
342342
graphdb_enable_userdata_scripts_on_reboot = var.graphdb_enable_userdata_scripts_on_reboot
343+
user_supplied_scripts = var.graphdb_user_supplied_scripts
344+
user_supplied_templates = var.graphdb_user_supplied_templates
345+
user_supplied_rendered_templates = var.graphdb_user_supplied_rendered_templates
343346

344347
# Parameter store encryption
345348

modules/graphdb/user_data.tf

+25
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,32 @@ data "cloudinit_config" "graphdb_user_data" {
170170
chmod -R og-rwx /usr/local/aws-cli/
171171
EOF
172172
}
173+
}
174+
175+
# Execute additional scripts
176+
dynamic "part" {
177+
for_each = var.user_supplied_scripts
178+
content {
179+
content_type = "text/x-shellscript"
180+
content = file(part.value)
181+
}
182+
}
173183

184+
# Execute additional rendered templates
185+
dynamic "part" {
186+
for_each = var.user_supplied_rendered_templates
187+
content {
188+
content_type = "text/x-shellscript"
189+
content = part.value
190+
}
174191
}
175192

193+
# Execute additional templates
194+
dynamic "part" {
195+
for_each = var.user_supplied_templates
196+
content {
197+
content_type = "text/x-shellscript"
198+
content = templatefile(part.value["path"], part.value["variables"])
199+
}
200+
}
176201
}

modules/graphdb/variables.tf

+21
Original file line numberDiff line numberDiff line change
@@ -421,3 +421,24 @@ variable "instance_maintenance_policy_max_healthy_percentage" {
421421
type = number
422422
default = 100
423423
}
424+
425+
variable "user_supplied_scripts" {
426+
description = "A list of paths to user-supplied shell scripts (local files) to be injected as additional parts in the EC2 user_data."
427+
type = list(string)
428+
default = []
429+
}
430+
431+
variable "user_supplied_rendered_templates" {
432+
description = "A list of strings containing pre-rendered shell script content to be added as parts in EC2 user_data."
433+
type = list(string)
434+
default = []
435+
}
436+
437+
variable "user_supplied_templates" {
438+
description = "A list of maps where each map contains a 'path' to the template file and a 'variables' map used to render it."
439+
type = list(object({
440+
path = string
441+
variables = map(any)
442+
}))
443+
default = []
444+
}

variables.tf

+21
Original file line numberDiff line numberDiff line change
@@ -547,6 +547,27 @@ variable "graphdb_enable_userdata_scripts_on_reboot" {
547547
default = false
548548
}
549549

550+
variable "graphdb_user_supplied_scripts" {
551+
description = "A list of paths to user-supplied shell scripts (local files) to be injected as additional parts in the EC2 user_data."
552+
type = list(string)
553+
default = []
554+
}
555+
556+
variable "graphdb_user_supplied_rendered_templates" {
557+
description = "A list of strings containing pre-rendered shell script content to be added as parts in EC2 user_data."
558+
type = list(string)
559+
default = []
560+
}
561+
562+
variable "graphdb_user_supplied_templates" {
563+
description = "A list of maps where each map contains a 'path' to the template file and a 'variables' map used to render it."
564+
type = list(object({
565+
path = string
566+
variables = map(any)
567+
}))
568+
default = []
569+
}
570+
550571
# S3 bucket encryption
551572

552573
variable "create_s3_kms_key" {

0 commit comments

Comments
 (0)