You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+1
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,7 @@
15
15
* 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
16
16
* Changed graphdb_instance_volume policy to restrict ec2:AttachVolume and ec2:CreateVolume for only specifically tagged volumes
17
17
* 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
Copy file name to clipboardexpand all lines: README.md
+46
Original file line number
Diff line number
Diff line change
@@ -175,6 +175,9 @@ Before you begin using this Terraform module, ensure you meet the following prer
175
175
| 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 |
176
176
| asg\_instance\_refresh\_checkpoint\_delay | Number of seconds to wait after a checkpoint. |`number`|`3600`| no |
177
177
| 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 |
178
181
| create\_s3\_kms\_key | Enable creation of KMS key for S3 bucket encryption |`bool`|`false`| no |
179
182
| s3\_kms\_key\_admin\_arn | ARN of the role or user granted administrative access to the S3 KMS key. |`string`|`""`| no |
180
183
| s3\_key\_rotation\_enabled | Specifies whether key rotation is enabled. |`bool`|`true`| no |
0 commit comments