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 a30c843 commit 4c99c54Copy full SHA for 4c99c54
README.md
@@ -260,10 +260,10 @@ So I created a few [config utilities](acctest/config.go) to assist with this.
260
```go
261
fieldMap := map[string]interface{}{
262
"address": "http://example.com",
263
- "token": acctest.Literal("file(\"/location/on/disk/token\")"),
+ "token": acctest.Literal(`file("/location/on/disk/token")`),
264
"number_of_fish_in_the_sea": 3500000000000,
265
}
266
-confHCL := acctest.CompileProviderConfig("my_provider", map[string]interface{}{})
+confHCL := acctest.CompileProviderConfig("my_provider", fieldMap)
267
```
268
269
```hcl
0 commit comments