Skip to content

Commit

Permalink
automated commit
Browse files Browse the repository at this point in the history
Signed-off-by: Public copy <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed Nov 4, 2024
1 parent c94817b commit 965bbe3
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion images/wordpress/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,15 @@ variable "target_repository" {
description = "The docker repo into which the image and attestations should be published."
}

module "config" { source = "./config" }
module "php-versions" {
source = "../../tflib/versions/"
package = "php"
}

module "config" {
source = "./config"
php_version = [for k, v in module.php-versions.versions : k if v.is_latest][0]
}

module "latest" {
source = "../../tflib/publisher"
Expand Down

0 comments on commit 965bbe3

Please sign in to comment.