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_codepipeline_custom_action_type #8123

Merged
merged 24 commits into from
Oct 10, 2022
Merged
Show file tree
Hide file tree
Changes from 23 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
b756b54
New Resource: aws_codepipeline_custom_action_type
atsushi-ishibashi Mar 29, 2019
d0bcda3
fix format, modify acctest
atsushi-ishibashi Mar 29, 2019
f2e1f62
r/aws_codepipeline: Alphabetize attributes.
ewbankkit Oct 7, 2022
36ff9c5
r/aws_codepipeline: 'WithoutTimeout' CRUD handlers (#15090).
ewbankkit Oct 7, 2022
47a9c82
r/aws_codepipeline: Group CRUD handlers.
ewbankkit Oct 7, 2022
353c96d
r/aws_codepipeline: Correct function names.
ewbankkit Oct 10, 2022
4f72b2f
Add 'FindPipelineByName'.
ewbankkit Oct 10, 2022
8f281a0
r/aws_codepipeline: Tidy up expanders.
ewbankkit Oct 10, 2022
9e76ae1
r/aws_codepipeline: Tidy up flatteners.
ewbankkit Oct 10, 2022
c441033
Add 'TestAccCodePipeline_ecr'.
ewbankkit Oct 10, 2022
0c5d06a
Revert "fix format, modify acctest"
ewbankkit Oct 10, 2022
ec20037
Revert "New Resource: aws_codepipeline_custom_action_type"
ewbankkit Oct 10, 2022
2de0bee
Merge commit 'c441033c5620bb5ad96c8bf6ff51bf8e34534861' into HEAD
ewbankkit Oct 10, 2022
1652976
r/aws_codepipeline_custom_action_type: New resource.
ewbankkit Oct 10, 2022
d73533f
r/aws_codepipeline_custom_action_type: Flex.
ewbankkit Oct 10, 2022
b47ffd7
Add 'TestAccCodePipelineCustomActionType_basic'.
ewbankkit Oct 10, 2022
f7025c6
Add 'TestAccCodePipelineCustomActionType_disappears' and 'TestAccCode…
ewbankkit Oct 10, 2022
d74c2d3
r/aws_codepipeline_custom_action_type: Document tags.
ewbankkit Oct 10, 2022
4ce42cc
r/aws_codepipeline_custom_action_type: Add 'TestAccCodePipelineCustom…
ewbankkit Oct 10, 2022
89f25b8
Fix semgrep 'ci.test-config-funcs-correct-form'.
ewbankkit Oct 10, 2022
4f45edd
Fix terrafmt errors.
ewbankkit Oct 10, 2022
5ee2b86
Fix markdownlint 'MD047/single-trailing-newline Files should end with…
ewbankkit Oct 10, 2022
3493702
Fix tfproviderdocs error.
ewbankkit Oct 10, 2022
1efdb43
Fix tfproviderdocs errors.
ewbankkit Oct 10, 2022
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/8123.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:new-resource
aws_codepipeline_custom_action_type
```
5 changes: 3 additions & 2 deletions internal/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -1172,8 +1172,9 @@ func New(_ context.Context) (*schema.Provider, error) {
"aws_codedeploy_deployment_config": deploy.ResourceDeploymentConfig(),
"aws_codedeploy_deployment_group": deploy.ResourceDeploymentGroup(),

"aws_codepipeline": codepipeline.ResourceCodePipeline(),
"aws_codepipeline_webhook": codepipeline.ResourceWebhook(),
"aws_codepipeline": codepipeline.ResourcePipeline(),
"aws_codepipeline_custom_action_type": codepipeline.ResourceCustomActionType(),
"aws_codepipeline_webhook": codepipeline.ResourceWebhook(),

"aws_codestarconnections_connection": codestarconnections.ResourceConnection(),
"aws_codestarconnections_host": codestarconnections.ResourceHost(),
Expand Down
Loading