Skip to content

Commit

Permalink
docs: Move the note about the AMI owner to somewhere more visible
Browse files Browse the repository at this point in the history
  • Loading branch information
PurpleBooth committed Oct 4, 2023
1 parent ae82a28 commit 4dc0bcb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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],
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down

0 comments on commit 4dc0bcb

Please sign in to comment.