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: Add an importing plan README #1

Open
wants to merge 13 commits into
base: feat/add-autokey
Choose a base branch
from

Conversation

romanini-ciandt
Copy link
Owner

@romanini-ciandt romanini-ciandt commented Sep 12, 2024

The goal of this PR is to provide proper instructions to import existing Key Handles into new autokey submodule

@romanini-ciandt romanini-ciandt self-assigned this Sep 12, 2024
@@ -39,7 +39,7 @@ resource "google_kms_key_handle" "primary" {
provider = google-beta

project = each.value.project
name = "${each.value.name}-${random_string.suffix[0].result}"
name = each.value.name
Copy link
Owner Author

Choose a reason for hiding this comment

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

We don't actually need to append the random here. I'm removing in order to turn the import process feasible.

Copy link
Collaborator

Choose a reason for hiding this comment

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

Does apply -> destroy -> apply works for your module if you drop the randomness? I thought we would run into existing resource conflicts if we don't, because KeyHandles (like other KMS resources) are not actually deleted on terraform destroy, but really just dropped from the tf state.

Copy link
Owner Author

Choose a reason for hiding this comment

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

Hmmm you're right... good catch, thanks!
I'll need to modify the import instructions then. User will need to manually append the random suffix into .tfvars, otherwise the resource will be created instead of imported.

Comment on lines 13 to 23
1. Identify your existing Autokey folder number used to configure [Autokey configuration](https://cloud.google.com/kms/docs/enable-autokey#enable-autokey-folder).
1. This value will be referenced as: `AUTOKEY-FOLDER-NUMBER`
1. Identify your existing project ID used to [configure Cloud KMS resources created by Autokey](https://cloud.google.com/kms/docs/enable-autokey#set-up-key-project).
1. This value will be referenced as: `AUTOKEY-KMS-PROJECT-ID`
1. Indentify your existing [Autokey Key Handle](https://cloud.google.com/kms/docs/resource-hierarchy#key_handles) configuration. It's composed by the following:
1. Autokey Resource Project ID; (e.g: A Cloud Storage Bucket project ID configured with Autokey);
1. This value will be referenced as: `AUTOKEY-RESOURCE-PROJECT-ID`;
1. Key Handle location; (e.g: A Cloud Storage Bucket location configured with Autokey);
1. This value will be referenced as: `AUTOKEY-LOCATION`;
1. Key Handle name; (e.g: The Key Handle name configured for Cloud Storage Bucket);
1. This value will be referenced as: `AUTOKEY-KEYHANDLE-NAME`;
Copy link
Collaborator

Choose a reason for hiding this comment

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

Could a example be added with:

  • Terraform commands on how to get these values from an existing state
  • gcloud commands to get these values from GCP

Choose a reason for hiding this comment

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

+1, if we can provide a bash script that would be helpful.

Choose a reason for hiding this comment

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

or if you want to try creating some simple go code using the templating library for the KH's

1. Key Handle name; (e.g: The Key Handle name configured for Cloud Storage Bucket);
1. This value will be referenced as: `AUTOKEY-KEYHANDLE-NAME`;
1. Run `cd` to your [autokey submodule](../modules/autokey/README.md) folder;
1. Create a `terraform.tfvars` file with the following code, replacing all the values in caps lock with your info:

Choose a reason for hiding this comment

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

".... replace all the placeholder values in all caps"


## Importing from terraform-google-autokey considerations
1. **WARNING:** [terraform-google-autokey](https://registry.terraform.io/modules/GoogleCloudPlatform/autokey/google) module can be used to create your Autokey folder, Autokey KMS project, Autokey resource project and additional resources (e.g: a Cloud Storage Bucket configured with Autokey), so **DO NOT RUN** a `terraform destroy` for the module, even after the Key Handle import, unless you just used the module for Autokey configuration and the Key Handle creations only.
1. If you are migrating from [terraform-google-autokey](https://registry.terraform.io/modules/GoogleCloudPlatform/autokey/google) module, you should copy the terraform outputs provided by the module and jump directly to step 4.

Choose a reason for hiding this comment

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

let's not make it an "if statement" but rather indicate that it's recommended to transition from that repo.

Comment on lines 13 to 23
1. Identify your existing Autokey folder number used to configure [Autokey configuration](https://cloud.google.com/kms/docs/enable-autokey#enable-autokey-folder).
1. This value will be referenced as: `AUTOKEY-FOLDER-NUMBER`
1. Identify your existing project ID used to [configure Cloud KMS resources created by Autokey](https://cloud.google.com/kms/docs/enable-autokey#set-up-key-project).
1. This value will be referenced as: `AUTOKEY-KMS-PROJECT-ID`
1. Indentify your existing [Autokey Key Handle](https://cloud.google.com/kms/docs/resource-hierarchy#key_handles) configuration. It's composed by the following:
1. Autokey Resource Project ID; (e.g: A Cloud Storage Bucket project ID configured with Autokey);
1. This value will be referenced as: `AUTOKEY-RESOURCE-PROJECT-ID`;
1. Key Handle location; (e.g: A Cloud Storage Bucket location configured with Autokey);
1. This value will be referenced as: `AUTOKEY-LOCATION`;
1. Key Handle name; (e.g: The Key Handle name configured for Cloud Storage Bucket);
1. This value will be referenced as: `AUTOKEY-KEYHANDLE-NAME`;

Choose a reason for hiding this comment

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

+1, if we can provide a bash script that would be helpful.

Comment on lines 13 to 23
1. Identify your existing Autokey folder number used to configure [Autokey configuration](https://cloud.google.com/kms/docs/enable-autokey#enable-autokey-folder).
1. This value will be referenced as: `AUTOKEY-FOLDER-NUMBER`
1. Identify your existing project ID used to [configure Cloud KMS resources created by Autokey](https://cloud.google.com/kms/docs/enable-autokey#set-up-key-project).
1. This value will be referenced as: `AUTOKEY-KMS-PROJECT-ID`
1. Indentify your existing [Autokey Key Handle](https://cloud.google.com/kms/docs/resource-hierarchy#key_handles) configuration. It's composed by the following:
1. Autokey Resource Project ID; (e.g: A Cloud Storage Bucket project ID configured with Autokey);
1. This value will be referenced as: `AUTOKEY-RESOURCE-PROJECT-ID`;
1. Key Handle location; (e.g: A Cloud Storage Bucket location configured with Autokey);
1. This value will be referenced as: `AUTOKEY-LOCATION`;
1. Key Handle name; (e.g: The Key Handle name configured for Cloud Storage Bucket);
1. This value will be referenced as: `AUTOKEY-KEYHANDLE-NAME`;

Choose a reason for hiding this comment

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

or if you want to try creating some simple go code using the templating library for the KH's

@@ -0,0 +1,118 @@
# Importing Autokey Key Handles Guidance

Choose a reason for hiding this comment

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

Perhaps some confusion from last comment. Please make an actual bash script in a tools directory that can be run. We don't need a doc that describes the bash script helper

Instead have this doc talk about the general steps, what changes they should make based on resources, and how to successfully run the script.

1. Run `cd REPLACE-WITH-YOUR-PATH` to your `terraform-google-autokey/examples/cloud_autokey_example` module path;
1. If you didn't use `examples/cloud_autokey_example`, make sure you update the output names below according your terraform files.
1. Run `terraform output` to get the name of the Autokey folder number and Autokey Key project:
```bash

Choose a reason for hiding this comment

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

Consider using a style guide for your bash. Can even use a linter if follow a guide

For example:
https://google.github.io/styleguide/shellguide.html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants