From 4dc0bcb7b4728e7eb252f53770d438ed3fd77dc9 Mon Sep 17 00:00:00 2001 From: Billie Thompson Date: Wed, 4 Oct 2023 13:33:28 +0200 Subject: [PATCH] docs: Move the note about the AMI owner to somewhere more visible --- main.tf | 2 +- variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/main.tf b/main.tf index 73e0006..54e6a4f 100644 --- a/main.tf +++ b/main.tf @@ -48,7 +48,7 @@ module "github_runner" { syncer_lambda_s3_key = local.aws_lambda_s3_syncer_key userdata_template = var.userdata_template - ami_owners = [var.ami_owner_filter] # Canonical's Amazon account ID + ami_owners = [var.ami_owner_filter] ami_filter = { name = [var.ami_name_filter], diff --git a/variables.tf b/variables.tf index cfd091a..a6236c0 100644 --- a/variables.tf +++ b/variables.tf @@ -85,7 +85,7 @@ variable "ami_owner_filter" { condition = length(var.ami_owner_filter) > 0 error_message = "ami_owner_filter must be set" } - description = "The owner filter to use when searching for the AMI to use for the runner" + description = "The owner filter to use when searching for the AMI to use for the runner. The default is canonicals account" } variable "userdata_template" {