We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a25b2c commit c747139Copy full SHA for c747139
modules/runners/policies-lambda-common.tf
@@ -14,6 +14,7 @@ resource "aws_iam_policy" "ami_id_ssm_parameter_read" {
14
name = "${var.prefix}-ami-id-ssm-parameter-read"
15
path = local.role_path
16
description = "Allows for reading ${var.prefix} GitHub runner AMI ID from an SSM parameter"
17
+ tags = local.tags
18
policy = <<-JSON
19
{
20
"Version": "2012-10-17",
modules/runners/policies-runner.tf
@@ -12,6 +12,7 @@ resource "aws_iam_instance_profile" "runner" {
12
name = "${var.prefix}-runner-profile"
13
role = aws_iam_role.runner.name
path = local.instance_profile_path
}
resource "aws_iam_role_policy" "runner_session_manager_aws_managed" {
0 commit comments