Skip to content

[New Resources]aws_transfer_web_app and aws_transfer_web_app_customization #42708

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

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
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/42708.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
```release-note:new-resource
aws_transfer_web_app
```

```release-note:new-resource
aws_transfer_web_app_customization
```
24 changes: 14 additions & 10 deletions internal/service/transfer/exports_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,18 @@ package transfer

// Exports for use in tests only.
var (
ResourceAccess = resourceAccess
ResourceAgreement = resourceAgreement
ResourceCertificate = resourceCertificate
ResourceConnector = resourceConnector
ResourceProfile = resourceProfile
ResourceServer = resourceServer
ResourceSSHKey = resourceSSHKey
ResourceTag = resourceTag
ResourceUser = resourceUser
ResourceWorkflow = resourceWorkflow
ResourceAccess = resourceAccess
ResourceAgreement = resourceAgreement
ResourceCertificate = resourceCertificate
ResourceConnector = resourceConnector
ResourceProfile = resourceProfile
ResourceServer = resourceServer
ResourceSSHKey = resourceSSHKey
ResourceTag = resourceTag
ResourceUser = resourceUser
ResourceWebApp = newResourceWebApp
ResourceWebAppCustomization = newResourceWebAppCustomization
ResourceWorkflow = resourceWorkflow

FindAccessByTwoPartKey = findAccessByTwoPartKey
FindAgreementByTwoPartKey = findAgreementByTwoPartKey
Expand All @@ -26,4 +28,6 @@ var (
FindUserByTwoPartKey = findUserByTwoPartKey
FindUserSSHKeyByThreePartKey = findUserSSHKeyByThreePartKey
FindWorkflowByID = findWorkflowByID
FindWebAppByID = findWebAppByID
FindWebAppCustomizationByID = findWebAppCustomizationByID
)
16 changes: 15 additions & 1 deletion internal/service/transfer/service_package_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions internal/service/transfer/sweep.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ func RegisterSweepers() {
"aws_transfer_server",
},
})

awsv2.Register("aws_transfer_web_app", sweepWebApps)
}

func sweepServers(region string) error {
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading