Skip to content

Commit

Permalink
Merge pull request #100 from jonjohnsonjr/tuf-love
Browse files Browse the repository at this point in the history
Bump all the tf stuff
  • Loading branch information
jonjohnsonjr authored Mar 20, 2024
2 parents aaae356 + 0f8e32d commit bf8c141
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
1 change: 1 addition & 0 deletions images/static/alpine.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ module "alpine" {
target_repository = var.target_repository
config = file("${path.module}/configs/alpine.apko.yaml")
extra_packages = [] # Override the default, which includes `wolfi-baselayout`
check_sbom = false
}

module "test-alpine" {
Expand Down
11 changes: 9 additions & 2 deletions tflib/publisher/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ terraform {
}
apko = {
source = "chainguard-dev/apko"
version = "0.13.0"
version = "0.15.2"
}
}
}
Expand All @@ -20,13 +20,20 @@ variable "extra_packages" {
default = ["wolfi-baselayout"]
}

variable "check_sbom" {
type = bool
default = false
description = "Whether to run the NTIA conformance checker over the images we produce prior to attesting the SBOMs."
}

module "this" {
source = "chainguard-dev/apko/publisher"
version = "0.0.10"
version = "0.0.12"

target_repository = var.target_repository
config = var.config
extra_packages = var.extra_packages
check_sbom = var.check_sbom
}

output "image_ref" {
Expand Down

0 comments on commit bf8c141

Please sign in to comment.