Skip to content
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

New resource: aws_drs_replication_configuration_template #26399

Merged
merged 28 commits into from
Jun 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
1a856ff
drs rep config
lewinkedrs Aug 18, 2022
93ac38f
adding doc
lewinkedrs Aug 19, 2022
0c6816c
adding schema elem
lewinkedrs Aug 22, 2022
828542e
markdown edits
lewinkedrs Aug 22, 2022
0a8686f
removing markdown indent
lewinkedrs Aug 22, 2022
48843cc
adding double quotes to markdown
lewinkedrs Aug 22, 2022
e6163ba
fixing quotes
lewinkedrs Aug 22, 2022
d34c193
removing newlines
lewinkedrs Aug 22, 2022
e8d0097
fixing subcategory
lewinkedrs Aug 22, 2022
47c7e12
drs_replication_configuration_template: Part way thru migration
YakDriver Jun 4, 2024
204bae1
drs/find: Migration step
YakDriver Jun 4, 2024
58682c6
drs: Generators
YakDriver Jun 4, 2024
7d791f5
drs: Add test exports
YakDriver Jun 4, 2024
2ff6b87
drs: Gen tags
YakDriver Jun 4, 2024
c53504b
drs: Fix generate
YakDriver Jun 4, 2024
72f9e08
drs: Update service package
YakDriver Jun 4, 2024
09afa57
drs/replication_configuration_template: Convert to framework, add tests
YakDriver Jun 4, 2024
cd63842
drs: Add header
YakDriver Jun 4, 2024
92e6356
docs/drs: Begin update of docs
YakDriver Jun 4, 2024
038d967
drs: Updates to docs, logic
YakDriver Jun 17, 2024
df1acae
drs/replication_configuration_template: Fix test
YakDriver Jun 18, 2024
8105a99
Add changelog
YakDriver Jun 18, 2024
b741a36
docs/drs: Add warning note about status
YakDriver Jun 18, 2024
ccdbc98
drs/rep_conf_temp: Update test with correct args
YakDriver Jun 18, 2024
524c9af
docs/drs: Fixup header
YakDriver Jun 18, 2024
371b7df
drs: fix constants
YakDriver Jun 18, 2024
fd5f7ae
drs: gofmt
YakDriver Jun 18, 2024
b9bd770
drs: Fix panic
YakDriver Jun 18, 2024
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
3 changes: 3 additions & 0 deletions .changelog/26399.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:new-resource
aws_drs_replication_configuration_template
```
9 changes: 9 additions & 0 deletions internal/service/drs/exports_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package drs

// Exports for use in tests only.
var (
FindReplicationConfigurationTemplateByID = findReplicationConfigurationTemplateByID
)
2 changes: 1 addition & 1 deletion internal/service/drs/generate.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

//go:generate go run ../../generate/tags/main.go -AWSSDKVersion=2 -ListTags -ListTagsInIDElem=ResourceArn -ServiceTagsMap -SkipTypesImp -KVTValues -TagOp=TagResource -TagInIDElem=ResourceArn -UntagOp=UntagResource -CreateTags -ListTags -UpdateTags
//go:generate go run ../../generate/servicepackage/main.go
//go:generate go run ../../generate/tagstests/main.go
// ONLY generate directives and package declaration! Do not add anything else to this file.

package drs
Loading
Loading