Skip to content

Commit 04cbf43

Browse files
authored
Merge pull request #261 from mackerelio-labs/fix-monitor-data-source
fix monitor data source
2 parents 77d4226 + 3ac5f62 commit 04cbf43

3 files changed

+6
-3
lines changed

internal/provider/data_source_mackerel_monitor.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,9 @@ func (d *mackerelMonitorDataSource) Schema(_ context.Context, _ datasource.Schem
145145
"response_time_warning": types.Float64Type,
146146
"response_time_duration": types.Int64Type,
147147

148-
"contains_string": types.StringType,
149-
"follow_redirect": types.BoolType,
148+
"contains_string": types.StringType,
149+
"follow_redirect": types.BoolType,
150+
"expected_status_code": types.Int64Type,
150151

151152
"skip_certificate_verification": types.BoolType,
152153
"certification_expiration_critical": types.Int64Type,

mackerel/data_source_mackerel_monitor_test.go

+2
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ func TestAccDataSourceMackerelMonitorExternal(t *testing.T) {
163163
resource.TestCheckResourceAttr(dsName, "external.0.headers.%", "1"),
164164
resource.TestCheckResourceAttr(dsName, "external.0.headers.Cache-Control", "no-cache"),
165165
resource.TestCheckResourceAttr(dsName, "external.0.follow_redirect", "true"),
166+
resource.TestCheckResourceAttr(dsName, "external.0.expected_status_code", "200"),
166167
),
167168
resource.TestCheckResourceAttr(dsName, "expression.#", "0"),
168169
resource.TestCheckResourceAttr(dsName, "anomaly_detection.#", "0"),
@@ -430,6 +431,7 @@ resource "mackerel_monitor" "foo" {
430431
Cache-Control = "no-cache"
431432
}
432433
follow_redirect = true
434+
expected_status_code = 200
433435
}
434436
}
435437

mackerel/resource_mackerel_monitor_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,7 @@ resource "mackerel_monitor" "foo" {
767767
Cache-Control = "no-cache"
768768
}
769769
follow_redirect = true
770-
expected_status_code = 200
770+
expected_status_code = 200
771771
}
772772
}
773773
`, serviceName, name)

0 commit comments

Comments
 (0)