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: modules/runners/variables.tf
+6
Original file line number
Diff line number
Diff line change
@@ -130,6 +130,12 @@ variable "ami_owners" {
130
130
default=["amazon"]
131
131
}
132
132
133
+
variable"ami_id_ssm_parameter_arn" {
134
+
description="ARN of the SSM parameter (of data type aws:ec2:image) that contains the AMI ID to launch runner instances from. Overrides ami_filter"
135
+
type=string
136
+
default=null
137
+
}
138
+
133
139
variable"ami_id_ssm_parameter_name" {
134
140
description="Externally managed SSM parameter (of data type aws:ec2:image) that contains the AMI ID to launch runner instances from. Overrides ami_filter"
You can optionally create the SSM parameters yourself and provide the ARN and name here, through the `*_ssm` attributes.
38
-
If you chose to provide the configuration values directly here,
38
+
If you chose to provide the configuration values directly here,
39
39
please ensure the key is the base64-encoded `.pem` file (the output of `base64 app.private-key.pem`, not the content of `private-key.pem`).
40
40
Note: the provided SSM parameters arn and name have a precedence over the actual value (i.e `key_base64_ssm` has a precedence over `key_base64` etc).
41
41
EOF
@@ -383,8 +383,14 @@ variable "ami_owners" {
383
383
default=["amazon"]
384
384
}
385
385
386
+
variable"ami_id_ssm_parameter_arn" {
387
+
description="ARN of the SSM parameter (of data type aws:ec2:image) that contains the AMI ID to launch runner instances from. Overrides ami_filter"
388
+
type=string
389
+
default=null
390
+
}
391
+
386
392
variable"ami_id_ssm_parameter_name" {
387
-
description="Externally managed SSM parameter (of data type aws:ec2:image) that contains the AMI ID to launch runner instances from. Overrides ami_filter"
393
+
description="(DEPRECATED) Variable is replaced by `ami_id_ssm_parameter_arn` Externally managed SSM parameter (of data type aws:ec2:image) that contains the AMI ID to launch runner instances from. Overrides ami_filter"
0 commit comments