Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changelog/44782.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
```release-note:new-resource
aws_networkflowmonitor_monitor
```

```release-note:new-resource
aws_networkflowmonitor_scope
```
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,7 @@ require (
github.com/gertd/go-pluralize v0.2.1
github.com/goccy/go-yaml v1.18.0
github.com/google/go-cmp v0.7.0
github.com/google/uuid v1.6.0
github.com/hashicorp/aws-cloudformation-resource-schema-sdk-go v0.23.0
github.com/hashicorp/aws-sdk-go-base/v2 v2.0.0-beta.67
github.com/hashicorp/awspolicyequivalence v1.7.0
Expand Down Expand Up @@ -345,7 +346,6 @@ require (
github.com/go-logr/logr v1.4.3 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-checkpoint v0.5.0 // indirect
github.com/hashicorp/go-plugin v1.7.0 // indirect
Expand Down
13 changes: 13 additions & 0 deletions internal/service/networkflowmonitor/exports_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package networkflowmonitor

// Exports for use in tests only.
var (
ResourceMonitor = newMonitorResource
ResourceScope = newScopeResource

FindMonitorByName = findMonitorByName
FindScopeByID = findScopeByID
)
Loading
Loading