Skip to content

Commit

Permalink
Fix a typo in terraform.md
Browse files Browse the repository at this point in the history
The field name of `image` does not exist per https://registry.terraform.io/providers/ko-build/ko/latest/docs/resources/build#read-only.

Found this problem while trying to use it, and confirmed it working with this fix.
  • Loading branch information
chaodaiG authored May 28, 2024
1 parent c9e27f0 commit 3fe83e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/advanced/terraform.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ resource "ko_build" "app" {
// Report the build image's digest.
output "image" {
value = ko_build.app.image
value = ko_build.app.image_ref
}
```

Expand Down

0 comments on commit 3fe83e4

Please sign in to comment.