Tom Clift
Tom Clift
Used it, like it, thank you @tomdcc. Want a hand to document usage in the README? btw, I don't much like how the HTML templates are added to the javascript...
+1 IMO the primary purpose of pagination is to avoid scrolling (keeping all table items on screen), not a bandwidth or performance concern. Going to the next page is not...
The error: ``` 'host' is not a valid URL ``` is likely because: ```terraform host = data.google_container_cluster.this.endpoint ``` should have been (as per #1468): ```terraform host = "https://${data.google_container_cluster.this.endpoint}" ``` but:...
This may have been evident from the issue title, but those looking for a workaround can remove dynamic/data values from the provider configuration. E.g., given a suitably configured `kubectl` environment,...
Approaching this from a different angle... how would one produce a 73pt × 73pt PDF (to pick an arbitrary size that doesn't appear possible)? There seem to be many issues...