-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(slo): add md slo support for slo data source #635
Conversation
@jharley in the screenshot the dataset field returns a null value. should we return something to the dataset field when its omitted from the config? spoke with Madhu about it but we're not sure if anything might be relying on a value being returned? and if so, what would we make the value for MD SLOs, would it just be "all"? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great first pass at this! A few comments for clarity and tiding up.
in the screenshot the dataset field returns a null value. should we return something to the dataset field when its omitted from the config?
I think that's to be expected -- you can even assert it in your MD SLO test. There's no way to not return an attribute in Terraform as far as I know and null
feels more correct to me than all
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No additional comments from me, I think Jason's covered it :D
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Final bit of cleanup and then this is good to go! Nice work!
resource.TestCheckResourceAttr("data.honeycombio_slo.test", "sli", slo.SLI.Alias), | ||
resource.TestCheckResourceAttr("data.honeycombio_slo.test", "target_percentage", "99.5"), | ||
resource.TestCheckResourceAttr("data.honeycombio_slo.test", "time_period", "30"), | ||
resource.TestCheckNoResourceAttr("data.honeycombio_slo.test", "dataset"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice ✨
@@ -54,6 +56,89 @@ data "honeycombio_slo" "test" { | |||
resource.TestCheckResourceAttr("data.honeycombio_slo.test", "sli", slo.SLI.Alias), | |||
resource.TestCheckResourceAttr("data.honeycombio_slo.test", "target_percentage", "99.5"), | |||
resource.TestCheckResourceAttr("data.honeycombio_slo.test", "time_period", "30"), | |||
resource.TestCheckResourceAttr("data.honeycombio_slo.test", "dataset", dataset), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice ✨
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good from my side! Just one lingering reference to clean up I think based on prior feedback.
Co-authored-by: Jason Harley <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work! ✨
Which problem is this PR solving?
https://app.asana.com/1/72322038700732/project/1205961717360815/task/1205427815943458?focus=true
Short description of the changes
Adds Multi Dataset support for SLO data source
How to verify that this has the expected result
Added unit tests to ensure SLO read with
data honeycombio_slo
is still possible with optional dataset argument for MD SLOsManual Verifications:
MD SLO:

Single SLO w/dataset argument:

Single SLO w/o dataset argument:
