Skip to content

Commit

Permalink
Merge pull request #35582 from farhanangullia/f-osis-pipeline
Browse files Browse the repository at this point in the history
[New Resource]: OpenSearch Ingestion Pipeline
  • Loading branch information
ewbankkit authored Feb 8, 2024
2 parents 9a0b88d + 67b6f1e commit 724451e
Show file tree
Hide file tree
Showing 10 changed files with 1,587 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .changelog/35582.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:new-resource
aws_osis_pipeline
```
12 changes: 12 additions & 0 deletions internal/service/osis/consts.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package osis

import (
"time"
)

const (
propagationTimeout = 2 * time.Minute
)
11 changes: 11 additions & 0 deletions internal/service/osis/exports_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package osis

// Exports for use in tests only.
var (
ResourcePipeline = newPipelineResource

FindPipelineByName = findPipelineByName
)
1 change: 1 addition & 0 deletions internal/service/osis/generate.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

//go:generate go run ../../generate/tags/main.go -AWSSDKVersion=2 -ListTags -ServiceTagsSlice -TagInIDElem=Arn -ListTagsInIDElem=Arn -UpdateTags
//go:generate go run ../../generate/servicepackage/main.go
// ONLY generate directives and package declaration! Do not add anything else to this file.

Expand Down
Loading

0 comments on commit 724451e

Please sign in to comment.