Skip to content

Commit

Permalink
feat: allow use of associate_public_ipv4_address from top-level module
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Kottler committed Oct 27, 2023
1 parent fdcbc76 commit ae70256
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,8 @@ module "runners" {

scale_up_reserved_concurrent_executions = var.scale_up_reserved_concurrent_executions

associate_public_ipv4_address = var.associate_public_ipv4_address

instance_profile_path = var.instance_profile_path
role_path = var.role_path
role_permissions_boundary = var.role_permissions_boundary
Expand Down
6 changes: 6 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -769,3 +769,9 @@ variable "enable_jit_config" {
type = bool
default = null
}

variable "associate_public_ipv4_address" {
description = "Associate public IPv4 with the runner. Only tested with IPv4"
type = bool
default = false
}

0 comments on commit ae70256

Please sign in to comment.