We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 156ca0e commit 3356f9fCopy full SHA for 3356f9f
internal/provider/provider_test.go
@@ -49,14 +49,14 @@ func (d *testDependencies) Config(t testing.TB) string {
49
resource "envbuilder_cached_image" "test" {
50
builder_image = {{ quote .BuilderImage }}
51
cache_repo = {{ quote .CacheRepo }}
52
+ git_url = {{ quote .Repo.URL }}
53
extra_env = {
54
+ "ENVBUILDER_GIT_SSH_PRIVATE_KEY_PATH": {{ quote .Repo.Key }}
55
+ "ENVBUILDER_VERBOSE": true
56
{{ range $k, $v := .ExtraEnv }}
57
{{ quote $k }}: {{ quote $v }}
58
{{ end }}
59
}
- git_url = {{ quote .Repo.URL }}
- git_ssh_private_key_path = {{ quote .Repo.Key }}
- verbose = true
60
}`
61
62
fm := template.FuncMap{"quote": quote}
0 commit comments