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

feat(parametermanager): add global and regional samples for kms_key field #4059

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

vatsal-vora-crestdata
Copy link

Description

Created samples for the KMS key field in the global and regional parameter manager.

Added Sample List:

  1. create_regional_param_with_kms_key
  2. remove_regional_param_kms_key
  3. update_regional_param_kms_key
  4. create_param_with_kms_key
  5. remove_param_kms_key
  6. update_param_kms_key

Checklist

  • I have followed guidelines from CONTRIBUTING.MD and Samples Style Guide
  • Tests pass: npm test (see Testing)
  • Lint pass: npm run lint (see Style)
  • These samples need a new API enabled in testing projects to pass (let us know which ones) - This requires Parameter manager API to be enabled
  • These samples need a new/updated env vars in testing projects set to pass (let us know which ones) - This requires GCLOUD_LOCATION to be set otherwise it will use us-central1
  • This pull request is from a branch created directly off of GoogleCloudPlatform/nodejs-docs-samples. Not a fork.
  • This sample adds a new sample directory, and I updated the CODEOWNERS file with the codeowners for this sample
  • This sample adds a new sample directory, and I created GitHub Actions workflow for this sample
  • This sample adds a new Product API, and I updated the Blunderbuss issue/PR auto-assigner with the codeowners for this sample
  • Please merge this PR for me once it is approved

@product-auto-label product-auto-label bot added the samples Issues that are directly related to samples. label Apr 2, 2025
Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

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

Hello @vatsal-vora-crestdata, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

Summary of Changes

This pull request adds samples for the KMS key field in the global and regional parameter manager. It includes samples for creating, updating, and removing KMS keys for both global and regional parameters using the Parameter Manager SDK. The changes include new JavaScript files for each of these operations, a package.json file to manage dependencies, an .eslintrc.yaml file for linting tests, and a test file to verify the functionality of the new samples.

Highlights

  • New Samples: Added six new samples: create_regional_param_with_kms_key, remove_regional_param_kms_key, update_regional_param_kms_key, create_param_with_kms_key, remove_param_kms_key, and update_param_kms_key.
  • Regional Parameter Support: The pull request introduces regional parameter support by adding samples that use a regional endpoint for the Parameter Manager client.
  • KMS Key Integration: The samples demonstrate how to create, update, and remove KMS keys associated with parameters, enhancing security.
  • Testing: Added a test suite to verify the functionality of the new samples, including setup and teardown of test parameters and KMS keys.

Changelog

Click here to see the changelog
  • parametermanager/createParamWithKmsKey.js
    • Added a new sample to create a global parameter with a KMS key.
    • The sample uses the Parameter Manager SDK to create the parameter with the specified KMS key.
  • parametermanager/package.json
    • Added dependencies for @google-cloud/parametermanager, @google-cloud/kms, c8, chai, mocha, and uuid.
    • Updated the test script to use c8 mocha for code coverage.
  • parametermanager/regional_samples/createRegionalParamWithKmsKey.js
    • Added a new sample to create a regional parameter with a KMS key.
    • The sample configures the Parameter Manager client to use a regional endpoint.
  • parametermanager/regional_samples/removeRegionalParamKmsKey.js
    • Added a new sample to remove a KMS key from a regional parameter.
    • The sample uses an update mask to remove the KMS key from the parameter.
  • parametermanager/regional_samples/updateRegionalParamKmsKey.js
    • Added a new sample to update a regional parameter with a KMS key.
    • The sample uses an update mask to update the KMS key for the parameter.
  • parametermanager/removeParamKmsKey.js
    • Added a new sample to remove a KMS key from a global parameter.
    • The sample uses an update mask to remove the KMS key from the parameter.
  • parametermanager/test/.eslintrc.yaml
    • Added a new file to configure ESLint for the test directory.
    • Configured the environment to include Mocha.
  • parametermanager/test/parametermanager.test.js
    • Added a new test suite to verify the functionality of the KMS key samples.
    • The test suite includes tests for creating, updating, and removing KMS keys for both global and regional parameters.
    • The test suite sets up and tears down test parameters and KMS keys.
  • parametermanager/updateParamKmsKey.js
    • Added a new sample to update a global parameter with a KMS key.
    • The sample uses an update mask to update the KMS key for the parameter.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in issue comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist is currently in preview and may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments to provide feedback.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.


In realms of code, where secrets reside,
KMS keys stand, as guardians confide.
Global or regional,
Security's the legion,
Protecting parameters, far and wide.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

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

Code Review

This pull request introduces samples for using KMS keys with the Parameter Manager API, covering both global and regional parameters. The samples include creating, updating, and removing KMS keys. The code is well-structured and includes necessary error handling. However, there are a few areas that could be improved for clarity and consistency.

Summary of Findings

  • Inconsistent parameter deletion in tests: The tests create parameters with -1 suffixes, but the parametersToDelete array is populated with the parameter names without the suffix. This could lead to issues during cleanup.
  • Missing error handling for KMS key creation: The tests attempt to create KMS keys but don't handle errors other than error.code === 5. Other potential errors during KMS key creation should be considered.
  • Incomplete removal of KMS keys: The tests destroy crypto key versions, but not the crypto keys themselves, which could lead to resource accumulation.

Merge Readiness

The pull request is almost ready for merging. However, the issues identified in the review comments, particularly those related to test cleanup and error handling, should be addressed before merging. I am unable to directly approve this pull request, and recommend that others review and approve this code before merging. At a minimum, the high severity issues should be addressed before merging.

format: 'JSON',
},
});
parametersToDelete.push(parameter);
Copy link
Contributor

Choose a reason for hiding this comment

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

high

The parameter variable contains the full parameter object, but you're only pushing the object to the parametersToDelete array. Since the deleteParameter method takes the parameter name, you should extract the name from the parameter object and push that to the array instead.

Suggested change
parametersToDelete.push(parameter);
parametersToDelete.push(parameter.name);

format: 'JSON',
},
});
regionalParametersToDelete.push(regionalParameter);
Copy link
Contributor

Choose a reason for hiding this comment

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

high

The regionalParameter variable contains the full parameter object, but you're only pushing the object to the regionalParametersToDelete array. Since the deleteParameter method takes the parameter name, you should extract the name from the parameter object and push that to the array instead.

Suggested change
regionalParametersToDelete.push(regionalParameter);
regionalParametersToDelete.push(regionalParameter.name);

Comment on lines +174 to +176
parametersToDelete.forEach(async parameterName => {
await client.deleteParameter({name: parameterName});
});
Copy link
Contributor

Choose a reason for hiding this comment

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

high

The parametersToDelete array contains parameter names with -1 suffixes in some cases, but the loop iterates through the array and attempts to delete parameters without the suffix. This will cause the deletion to fail for those parameters. Ensure that the parameter names in the array match the actual parameter names that were created.

Comment on lines +178 to +180
regionalParametersToDelete.forEach(async regionalParameterName => {
await regionalClient.deleteParameter({name: regionalParameterName});
});
Copy link
Contributor

Choose a reason for hiding this comment

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

high

The regionalParametersToDelete array contains parameter names with -1 suffixes in some cases, but the loop iterates through the array and attempts to delete parameters without the suffix. This will cause the deletion to fail for those parameters. Ensure that the parameter names in the array match the actual parameter names that were created.

Comment on lines +50 to +53
const request = {
parameter: {
name: name,
},
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

The request object only contains the name in the parameter field. It might be clearer to directly pass the name to the client.updateParameter function, if the API allows it.

Comment on lines +53 to +57
const request = {
parameter: {
name: name,
kmsKey: kmsKey,
},
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

The request object contains both the name and kmsKey in the parameter field. It might be clearer to separate these out if the API allows it, for better readability.

Comment on lines 160 to 168
cryptoKeyId: keyId1,
cryptoKey: {
purpose: 'ASYMMETRIC_DECRYPT',
versionTemplate: {
algorithm: 'RSA_DECRYPT_OAEP_2048_SHA256',
},
},
});
}
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

This try...catch block only handles the case where the crypto key doesn't exist (error.code === 5). Consider handling other potential errors that might occur during crypto key creation, such as permission issues or invalid parameters. If you don't handle these errors, the test might fail in unexpected ways.

Comment on lines 182 to 220
try {
await kmsClient.destroyCryptoKeyVersion({
name: `${kmsKey}/cryptoKeyVersions/1`,
});
} catch (error) {
if (error.code === 5) {
console.info(`Already destroyed: ${error.message}`);
}
}

try {
await kmsClient.destroyCryptoKeyVersion({
name: `${kmsKey1}/cryptoKeyVersions/1`,
});
} catch (error) {
if (error.code === 5) {
console.error(`Already destroyed: ${error.message}`);
}
}

try {
await kmsClient.destroyCryptoKeyVersion({
name: `${regionalKmsKey}/cryptoKeyVersions/1`,
});
} catch (error) {
if (error.code === 5) {
console.error(`Already destroyed: ${error.message}`);
}
}

try {
await kmsClient.destroyCryptoKeyVersion({
name: `${regionalKmsKey1}/cryptoKeyVersions/1`,
});
} catch (error) {
if (error.code === 5) {
console.error(`Already destroyed: ${error.message}`);
}
}
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

These try...catch blocks destroy crypto key versions, but they don't destroy the crypto keys themselves. While destroying the version is good, consider also destroying the crypto keys to fully clean up resources after the tests. You can use kmsClient.deleteCryptoKey for this, but be aware of potential permission issues or other errors during deletion.

Comment on lines +39 to +42
const request = {
parameter: {
name: name,
},
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

The request object only contains the name in the parameter field. It might be clearer to directly pass the name to the client.updateParameter function, if the API allows it.

Comment on lines +46 to +49
parameter: {
name: name,
kmsKey: kmsKey,
},
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

The request object contains both the name and kmsKey in the parameter field. It might be clearer to separate these out if the API allows it, for better readability.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
samples Issues that are directly related to samples.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant