Add NetApp Trial Resource - #1382
Merged
Merged
Conversation
Signed-off-by: Anuj Agrawal <anujjagrawal@google.com> [upstream:4b277e1b5bf0afc9eef4e773762465ca694f7d52] Signed-off-by: Modular Magician <magic-modules@google.com>
modular-magician
merged commit Jul 27, 2026
c02939a
into
terraform-google-modules:master
3 checks passed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds Terraform support for the Google Cloud NetApp Volumes (GCNV) Trial resource.
Implementation Details:
endTrialAPI endpoint requiresexitReasonand optionallyoptOutReasonsto be passed in the request body. Because these fields are not part of thesubscribeTrial(CREATE) request body, they are implemented as Terraform-only parameters (action_on_destroyandprovided_opt_out_reasons) using theurl_param_only: trueflag. This isolates them from theCREATErequest, and a custompre_deletehook maps them directly into theendTrialJSON payload duringterraform destroy.INACTIVEstate and returns200 OKrather than yielding standard404 Not Foundteardown responses. A customtest_check_destroytemplate has been added to safely validate theINACTIVEREST response during testing.CREATE,READ(import), andDELETElifecycle (including the custom parameter injection and theINACTIVEdestroy validation) has been manually verified end-to-end against the Google Cloud Staging sandbox.Release Note Template for Downstream PRs (will be copied)
See Write release notes for guidance.
Derived from GoogleCloudPlatform/magic-modules#18102