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

DocumentDB: Added aws_docdb_cluster_instance resource #7143

Merged
merged 3 commits into from
Feb 11, 2019

Conversation

fewstera
Copy link
Contributor

@fewstera fewstera commented Jan 15, 2019

This depends on my previous two PRs for DocumentDB (#7122 and #7123 ) so must be merged after those.

Forms part of #7077.

make testacc TESTARGS='-run=TestAccAWSDocDBClusterInstance_'
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./... -v -parallel 20 -run=TestAccAWSDocDBClusterInstance_ -timeout 120m
?       github.com/terraform-providers/terraform-provider-aws   [no test files]
=== RUN   TestAccAWSDocDBClusterInstance_importBasic
=== PAUSE TestAccAWSDocDBClusterInstance_importBasic
=== RUN   TestAccAWSDocDBClusterInstance_basic
=== PAUSE TestAccAWSDocDBClusterInstance_basic
=== RUN   TestAccAWSDocDBClusterInstance_az
=== PAUSE TestAccAWSDocDBClusterInstance_az
=== RUN   TestAccAWSDocDBClusterInstance_namePrefix
=== PAUSE TestAccAWSDocDBClusterInstance_namePrefix
=== RUN   TestAccAWSDocDBClusterInstance_generatedName
=== PAUSE TestAccAWSDocDBClusterInstance_generatedName
=== RUN   TestAccAWSDocDBClusterInstance_kmsKey
=== PAUSE TestAccAWSDocDBClusterInstance_kmsKey
=== RUN   TestAccAWSDocDBClusterInstance_disappears
=== PAUSE TestAccAWSDocDBClusterInstance_disappears
=== CONT  TestAccAWSDocDBClusterInstance_importBasic
=== CONT  TestAccAWSDocDBClusterInstance_generatedName
=== CONT  TestAccAWSDocDBClusterInstance_disappears
=== CONT  TestAccAWSDocDBClusterInstance_kmsKey
=== CONT  TestAccAWSDocDBClusterInstance_az
=== CONT  TestAccAWSDocDBClusterInstance_namePrefix
=== CONT  TestAccAWSDocDBClusterInstance_basic
--- PASS: TestAccAWSDocDBClusterInstance_disappears (653.00s)
--- PASS: TestAccAWSDocDBClusterInstance_namePrefix (692.17s)
--- PASS: TestAccAWSDocDBClusterInstance_importBasic (692.35s)
--- PASS: TestAccAWSDocDBClusterInstance_az (695.59s)
--- PASS: TestAccAWSDocDBClusterInstance_kmsKey (716.14s)
--- PASS: TestAccAWSDocDBClusterInstance_generatedName (736.72s)
--- PASS: TestAccAWSDocDBClusterInstance_basic (1378.75s)
PASS
ok      github.com/terraform-providers/terraform-provider-aws/aws       1378.810s

@ghost ghost added size/XXL Managed by automation to categorize the size of a PR. documentation Introduces or discusses updates to documentation. provider Pertains to the provider itself, rather than any interaction with AWS. tests PRs: expanded test coverage. Issues: expanded coverage, enhancements to test infrastructure. labels Jan 15, 2019
@fewstera fewstera changed the title DocumentDB: Added aws_docdb_cluster_instance resource 1ac6273 DocumentDB: Added aws_docdb_cluster_instance resource Jan 15, 2019
@bflad bflad added new-resource Introduces a new resource. service/docdb Issues and PRs that pertain to the docdb service. labels Feb 8, 2019
Copy link
Contributor

@bflad bflad left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @fewstera this is ready for rebase and provided an initial review below. All pretty small stuff so should be fairly easy to get in. 😄 Thanks for these contributions!

aws/resource_aws_docdb_cluster_instance.go Outdated Show resolved Hide resolved
aws/resource_aws_docdb_cluster_instance.go Outdated Show resolved Hide resolved
aws/resource_aws_docdb_cluster_instance.go Outdated Show resolved Hide resolved
aws/resource_aws_docdb_cluster_instance.go Outdated Show resolved Hide resolved
aws/resource_aws_docdb_cluster_instance.go Outdated Show resolved Hide resolved
aws/resource_aws_docdb_cluster_instance_test.go Outdated Show resolved Hide resolved
aws/resource_aws_docdb_cluster_instance_test.go Outdated Show resolved Hide resolved
website/docs/r/docdb_cluster_instance.html.markdown Outdated Show resolved Hide resolved
website/docs/r/docdb_cluster_instance.html.markdown Outdated Show resolved Hide resolved
@bflad bflad added the waiting-response Maintainers are waiting on response from community or contributor. label Feb 8, 2019
@fewstera
Copy link
Contributor Author

fewstera commented Feb 8, 2019

@bflad I think I've made all the changes requested.

I haven't had the chance to run the acceptance tests yet, I'm about to go out, so can't run them now, I will post the output when I get the chance.

Thanks again for checking the PR so thoroughly. 👍

@ghost ghost removed the waiting-response Maintainers are waiting on response from community or contributor. label Feb 8, 2019
@fewstera
Copy link
Contributor Author

fewstera commented Feb 9, 2019

@bflad acceptance tests now passing.

 make testacc TESTARGS='-run=TestAccAWSDocDBClusterInstance_'
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./... -v -parallel 20 -run=TestAccAWSDocDBClusterInstance_ -timeout 120m
?       github.com/terraform-providers/terraform-provider-aws   [no test files]
=== RUN   TestAccAWSDocDBClusterInstance_basic
=== PAUSE TestAccAWSDocDBClusterInstance_basic
=== RUN   TestAccAWSDocDBClusterInstance_az
=== PAUSE TestAccAWSDocDBClusterInstance_az
=== RUN   TestAccAWSDocDBClusterInstance_namePrefix
=== PAUSE TestAccAWSDocDBClusterInstance_namePrefix
=== RUN   TestAccAWSDocDBClusterInstance_generatedName
=== PAUSE TestAccAWSDocDBClusterInstance_generatedName
=== RUN   TestAccAWSDocDBClusterInstance_kmsKey
=== PAUSE TestAccAWSDocDBClusterInstance_kmsKey
=== RUN   TestAccAWSDocDBClusterInstance_disappears
=== PAUSE TestAccAWSDocDBClusterInstance_disappears
=== CONT  TestAccAWSDocDBClusterInstance_basic
=== CONT  TestAccAWSDocDBClusterInstance_kmsKey
=== CONT  TestAccAWSDocDBClusterInstance_namePrefix
=== CONT  TestAccAWSDocDBClusterInstance_disappears
=== CONT  TestAccAWSDocDBClusterInstance_generatedName
=== CONT  TestAccAWSDocDBClusterInstance_az
--- PASS: TestAccAWSDocDBClusterInstance_disappears (651.45s)
--- PASS: TestAccAWSDocDBClusterInstance_az (657.06s)
--- PASS: TestAccAWSDocDBClusterInstance_generatedName (679.58s)
--- PASS: TestAccAWSDocDBClusterInstance_namePrefix (714.98s)
--- PASS: TestAccAWSDocDBClusterInstance_kmsKey (724.67s)
--- PASS: TestAccAWSDocDBClusterInstance_basic (1310.49s)
PASS
ok      github.com/terraform-providers/terraform-provider-aws/aws       1310.539s

@bflad bflad added this to the v1.59.0 milestone Feb 11, 2019
Copy link
Contributor

@bflad bflad left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You are going to make a bunch of folks happy, @fewstera! LGTM. 🚀

--- PASS: TestAccAWSDocDBClusterInstance_disappears (658.86s)
--- PASS: TestAccAWSDocDBClusterInstance_namePrefix (666.71s)
--- PASS: TestAccAWSDocDBClusterInstance_az (694.22s)
--- PASS: TestAccAWSDocDBClusterInstance_kmsKey (702.83s)
--- PASS: TestAccAWSDocDBClusterInstance_generatedName (747.87s)
--- PASS: TestAccAWSDocDBClusterInstance_basic (1324.65s)

@bflad bflad merged commit f00ede1 into hashicorp:master Feb 11, 2019
bflad added a commit that referenced this pull request Feb 11, 2019
@bflad
Copy link
Contributor

bflad commented Feb 14, 2019

This has been released in version 1.59.0 of the AWS provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading.

@ghost
Copy link

ghost commented Mar 31, 2020

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.

If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks!

@ghost ghost locked and limited conversation to collaborators Mar 31, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
documentation Introduces or discusses updates to documentation. new-resource Introduces a new resource. provider Pertains to the provider itself, rather than any interaction with AWS. service/docdb Issues and PRs that pertain to the docdb service. size/XXL Managed by automation to categorize the size of a PR. tests PRs: expanded test coverage. Issues: expanded coverage, enhancements to test infrastructure.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants