-
Notifications
You must be signed in to change notification settings - Fork 9.2k
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
FSx ONTAP volume - ontap_volume_type shouldn't be computed #31544
FSx ONTAP volume - ontap_volume_type shouldn't be computed #31544
Conversation
Community NoteVoting for Prioritization
For Submitters
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Welcome @sdevope 👋
It looks like this is your first Pull Request submission to the Terraform AWS Provider! If you haven’t already done so please make sure you have checked out our CONTRIBUTOR guide and FAQ to make sure your contribution is adhering to best practice and has all the necessary elements in place for a successful approval.
Also take a look at our FAQ which details how we prioritize Pull Requests for inclusion.
Thanks again, and welcome to the community! 😃
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 🚀.
% make testacc TESTARGS='-run=TestAccFSxOntapVolume_' PKG=fsx ACCTEST_PARALLELISM=3
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/fsx/... -v -count 1 -parallel 3 -run=TestAccFSxOntapVolume_ -timeout 180m
=== RUN TestAccFSxOntapVolume_basic
=== PAUSE TestAccFSxOntapVolume_basic
=== RUN TestAccFSxOntapVolume_disappears
=== PAUSE TestAccFSxOntapVolume_disappears
=== RUN TestAccFSxOntapVolume_name
=== PAUSE TestAccFSxOntapVolume_name
=== RUN TestAccFSxOntapVolume_junctionPath
=== PAUSE TestAccFSxOntapVolume_junctionPath
=== RUN TestAccFSxOntapVolume_ontapVolumeType
=== PAUSE TestAccFSxOntapVolume_ontapVolumeType
=== RUN TestAccFSxOntapVolume_securityStyle
=== PAUSE TestAccFSxOntapVolume_securityStyle
=== RUN TestAccFSxOntapVolume_size
=== PAUSE TestAccFSxOntapVolume_size
=== RUN TestAccFSxOntapVolume_storageEfficiency
=== PAUSE TestAccFSxOntapVolume_storageEfficiency
=== RUN TestAccFSxOntapVolume_tags
=== PAUSE TestAccFSxOntapVolume_tags
=== RUN TestAccFSxOntapVolume_tieringPolicy
=== PAUSE TestAccFSxOntapVolume_tieringPolicy
=== CONT TestAccFSxOntapVolume_basic
=== CONT TestAccFSxOntapVolume_securityStyle
=== CONT TestAccFSxOntapVolume_tags
--- PASS: TestAccFSxOntapVolume_tags (2950.61s)
=== CONT TestAccFSxOntapVolume_tieringPolicy
--- PASS: TestAccFSxOntapVolume_basic (2971.49s)
=== CONT TestAccFSxOntapVolume_storageEfficiency
--- PASS: TestAccFSxOntapVolume_securityStyle (3365.86s)
=== CONT TestAccFSxOntapVolume_junctionPath
--- PASS: TestAccFSxOntapVolume_storageEfficiency (2941.02s)
=== CONT TestAccFSxOntapVolume_ontapVolumeType
--- PASS: TestAccFSxOntapVolume_tieringPolicy (3541.02s)
=== CONT TestAccFSxOntapVolume_name
--- PASS: TestAccFSxOntapVolume_junctionPath (3131.74s)
=== CONT TestAccFSxOntapVolume_disappears
--- PASS: TestAccFSxOntapVolume_ontapVolumeType (2793.20s)
=== CONT TestAccFSxOntapVolume_size
--- PASS: TestAccFSxOntapVolume_disappears (2850.96s)
--- PASS: TestAccFSxOntapVolume_name (3637.75s)
--- PASS: TestAccFSxOntapVolume_size (3196.92s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/fsx 3246.786s
@sdevope Thanks for the contribution 🎉 👏. |
This functionality has been released in v5.1.0 of the Terraform AWS Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you! |
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. |
Description
FSx ONTAP volume -
ontap_volume_type
shouldn't be computed.Relations
Closes #29456
References
AWS:FSx:Volume OntapConfiguration:
https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-volume-ontapconfiguration.html#cfn-fsx-volume-ontapconfiguration-ontapvolumetype
AWS SDK for Go; dedicated code:
https://github.com/aws/aws-sdk-go/blob/main/service/fsx/api.go#L22872
Output from Acceptance Testing