File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -269,7 +269,7 @@ resource "aws_iam_role" "instance" {
269
269
name = " ${ var . environment } -instance-role"
270
270
assume_role_policy = length (var. instance_role_json ) > 0 ? var. instance_role_json : templatefile (" ${ path . module } /policies/instance-role-trust-policy.json" , {})
271
271
permissions_boundary = var. permissions_boundary == " " ? null : " ${ var . arn_format } :iam::${ data . aws_caller_identity . current . account_id } :policy/${ var . permissions_boundary } "
272
- tags = local. tags
272
+ tags = merge ( local. tags , var . role_tags )
273
273
}
274
274
275
275
# ###############################################################################
Original file line number Diff line number Diff line change @@ -448,6 +448,12 @@ variable "runner_tags" {
448
448
default = {}
449
449
}
450
450
451
+ variable "role_tags" {
452
+ description = " Map of tags that will be added to the role created. Useful for tag based authorization."
453
+ type = map (string )
454
+ default = {}
455
+ }
456
+
451
457
variable "allow_iam_service_linked_role_creation" {
452
458
description = " Boolean used to control attaching the policy to a runner instance to create service linked roles."
453
459
type = bool
You can’t perform that action at this time.
0 commit comments