terraform-provider-docker/internal/provider/data_source_docker_logs.go
Martin 70852379ec
Some checks failed
Acc Tests / acc-test (TestAccDockerConfig, 0.15.x) (push) Has been cancelled
Acc Tests / acc-test (TestAccDockerConfig, 1.8.x) (push) Has been cancelled
Acc Tests / acc-test (TestAccDockerNetwork, 0.15.x) (push) Has been cancelled
Acc Tests / acc-test (TestAccDockerNetwork, 1.8.x) (push) Has been cancelled
Acc Tests / acc-test (TestAccDockerPlugin, 0.15.x) (push) Has been cancelled
Acc Tests / acc-test (TestAccDockerPlugin, 1.8.x) (push) Has been cancelled
Acc Tests / acc-test (TestAccDockerSecret, 0.15.x) (push) Has been cancelled
Acc Tests / acc-test (TestAccDockerSecret, 1.8.x) (push) Has been cancelled
Acc Tests / acc-test (TestAccDockerTag, 0.15.x) (push) Has been cancelled
Acc Tests / acc-test (TestAccDockerTag, 1.8.x) (push) Has been cancelled
Acc Tests / acc-test (TestAccDockerVolume, 0.15.x) (push) Has been cancelled
Acc Tests / acc-test (TestAccDockerVolume, 1.8.x) (push) Has been cancelled
Acc Tests / acc-test (true, TestAccDockerContainer, 0.15.x) (push) Has been cancelled
Acc Tests / acc-test (true, TestAccDockerContainer, 1.8.x) (push) Has been cancelled
Acc Tests / acc-test (true, TestAccDockerImage, 0.15.x) (push) Has been cancelled
Acc Tests / acc-test (true, TestAccDockerImage, 1.8.x) (push) Has been cancelled
Acc Tests / acc-test (true, TestAccDockerRegistryImage, 0.15.x) (push) Has been cancelled
Acc Tests / acc-test (true, TestAccDockerRegistryImage, 1.8.x) (push) Has been cancelled
Acc Tests / acc-test (true, TestAccDockerService, 0.15.x) (push) Has been cancelled
Acc Tests / acc-test (true, TestAccDockerService, 1.8.x) (push) Has been cancelled
Compile Binaries / compile-fast (push) Has been cancelled
Compile Binaries / compile (push) Has been cancelled
golangci-lint / lint (push) Has been cancelled
Unit Tests / unit-test (push) Has been cancelled
Website Checks / markdown-link-check (push) Has been cancelled
Docs and Website Lint / website-generation (push) Has been cancelled
Docs and Website Lint / website-lint-spellcheck-tffmt (push) Has been cancelled
Docs and Website Lint / markdown-lint (push) Has been cancelled
feat: Implement caching of docker provider (#808)
2025-10-16 20:18:34 +02:00

134 lines
3.3 KiB
Go

package provider
import (
"bufio"
"context"
"github.com/docker/docker/api/types/container"
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
)
func dataSourceDockerLogs() *schema.Resource {
return &schema.Resource{
Description: "`docker_logs` provides logs from specific container",
ReadContext: dataSourceDockerLogsRead,
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Description: "The name of the Docker Container",
Required: true,
},
"logs_list_string": {
Type: schema.TypeList,
Elem: &schema.Schema{Type: schema.TypeString},
Computed: true,
Description: "List of container logs, each element is a line.",
},
"logs_list_string_enabled": {
Type: schema.TypeBool,
Default: true,
Optional: true,
Description: "If true populate computed value `logs_list_string`",
},
"discard_headers": {
Type: schema.TypeBool,
Default: true,
Optional: true,
Description: "Discard headers that docker appends to each log entry",
},
"show_stdout": {
Type: schema.TypeBool,
Default: true,
Optional: true,
},
"show_stderr": {
Type: schema.TypeBool,
Default: true,
Optional: true,
},
"since": {
Type: schema.TypeString,
Default: "",
Optional: true,
},
"until": {
Type: schema.TypeString,
Default: "",
Optional: true,
},
"timestamps": {
Type: schema.TypeBool,
Default: false,
Optional: true,
},
"follow": {
Type: schema.TypeBool,
Default: false,
Optional: true,
},
"tail": {
Type: schema.TypeString,
Default: "",
Optional: true,
},
"details": {
Type: schema.TypeBool,
Default: false,
Optional: true,
},
},
}
}
func dataSourceDockerLogsRead(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
client, err := meta.(*ProviderConfig).MakeClient(ctx, d)
if err != nil {
return diag.Errorf("failed to create Docker client: %v", err)
}
containerId := d.Get("name").(string)
d.SetId(containerId)
// call client for logs
readCloser, err := client.ContainerLogs(ctx, containerId, container.LogsOptions{
ShowStdout: d.Get("show_stdout").(bool),
ShowStderr: d.Get("show_stderr").(bool),
Since: d.Get("since").(string),
Until: d.Get("until").(string),
Timestamps: d.Get("timestamps").(bool),
Follow: d.Get("follow").(bool),
Tail: d.Get("tail").(string),
Details: d.Get("details").(bool),
})
if err != nil {
return diag.Errorf("dataSourceDockerLogsRead: error while asking for logs %s", err)
}
defer readCloser.Close() //nolint:errcheck
// see https://github.com/moby/moby/issues/7375#issuecomment-51462963
discard := d.Get("discard_headers").(bool)
// read string lines
if d.Get("logs_list_string_enabled").(bool) {
lines := make([]string, 0)
scanner := bufio.NewScanner(readCloser)
// scan each line
for scanner.Scan() {
line := scanner.Text()
if discard {
line = line[8:]
}
lines = append(lines, line)
}
// set string lines
if err := d.Set("logs_list_string", lines); err != nil {
return diag.FromErr(err)
}
}
return nil
}