logdna / terraform-provider-logdna

Terraform provider to simplify creation of views, preset alerts and other resources in LogDNA!
https://registry.terraform.io/providers/logdna/logdna/latest
MIT License
11 stars 12 forks source link

Add outputs to show the View URL #99

Open dspv opened 1 year ago

dspv commented 1 year ago

Feature request

Ok, when I'm creating a View, I need to get an output with URL to see those logs. Any chance to add it?

resource logdna_view main {
    name        = "Cool Mezmo Logs"
    query       = "-health"
    categories  = ["DEV"]
    tags        = ["My", "awesome", "tags"]
}

I'd like to have an output something like this

output logdna_view_url {
    value = logdna_view.main.url
}