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

add kms key ring import job #2225

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/3702.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:new-resource
`google_kms_key_ring_import_job`
```
5 changes: 3 additions & 2 deletions google-beta/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -671,9 +671,9 @@ func Provider() terraform.ResourceProvider {
return provider
}

// Generated resources: 167
// Generated resources: 168
// Generated IAM resources: 66
// Total generated resources: 233
// Total generated resources: 234
func ResourceMap() map[string]*schema.Resource {
resourceMap, _ := ResourceMapWithErrors()
return resourceMap
Expand Down Expand Up @@ -853,6 +853,7 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
"google_identity_platform_tenant": resourceIdentityPlatformTenant(),
"google_kms_key_ring": resourceKMSKeyRing(),
"google_kms_crypto_key": resourceKMSCryptoKey(),
"google_kms_key_ring_import_job": resourceKMSKeyRingImportJob(),
"google_kms_secret_ciphertext": resourceKMSSecretCiphertext(),
"google_logging_metric": resourceLoggingMetric(),
"google_memcache_instance": resourceMemcacheInstance(),
Expand Down
322 changes: 322 additions & 0 deletions google-beta/resource_kms_key_ring_import_job.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,322 @@
// ----------------------------------------------------------------------------
//
// *** AUTO GENERATED CODE *** AUTO GENERATED CODE ***
//
// ----------------------------------------------------------------------------
//
// This file is automatically generated by Magic Modules and manual
// changes will be clobbered when the file is regenerated.
//
// Please read more about how to change this file in
// .github/CONTRIBUTING.md.
//
// ----------------------------------------------------------------------------

package google

import (
"fmt"
"log"
"reflect"
"strings"
"time"

"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/helper/validation"
)

func resourceKMSKeyRingImportJob() *schema.Resource {
return &schema.Resource{
Create: resourceKMSKeyRingImportJobCreate,
Read: resourceKMSKeyRingImportJobRead,
Delete: resourceKMSKeyRingImportJobDelete,

Importer: &schema.ResourceImporter{
State: resourceKMSKeyRingImportJobImport,
},

Timeouts: &schema.ResourceTimeout{
Create: schema.DefaultTimeout(4 * time.Minute),
Delete: schema.DefaultTimeout(4 * time.Minute),
},

Schema: map[string]*schema.Schema{
"import_job_id": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
Description: `It must be unique within a KeyRing and match the regular expression [a-zA-Z0-9_-]{1,63}`,
},
"import_method": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
ValidateFunc: validation.StringInSlice([]string{"RSA_OAEP_3072_SHA1_AES_256", "RSA_OAEP_4096_SHA1_AES_256"}, false),
Description: `The wrapping method to be used for incoming key material. Possible values: ["RSA_OAEP_3072_SHA1_AES_256", "RSA_OAEP_4096_SHA1_AES_256"]`,
},
"key_ring": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
DiffSuppressFunc: kmsCryptoKeyRingsEquivalent,
Description: `The KeyRing that this import job belongs to.
Format: ''projects/{{project}}/locations/{{location}}/keyRings/{{keyRing}}''.`,
},
"protection_level": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
ValidateFunc: validation.StringInSlice([]string{"SOFTWARE", "HSM", "EXTERNAL"}, false),
Description: `The protection level of the ImportJob. This must match the protectionLevel of the
versionTemplate on the CryptoKey you attempt to import into. Possible values: ["SOFTWARE", "HSM", "EXTERNAL"]`,
},
"attestation": {
Type: schema.TypeList,
Computed: true,
Description: `Statement that was generated and signed by the key creator (for example, an HSM) at key creation time.
Use this statement to verify attributes of the key as stored on the HSM, independently of Google.
Only present if the chosen ImportMethod is one with a protection level of HSM.`,
MaxItems: 1,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"content": {
Type: schema.TypeString,
Computed: true,
Description: `The attestation data provided by the HSM when the key operation was performed.
A base64-encoded string.`,
},
"format": {
Type: schema.TypeString,
Computed: true,
Description: `The format of the attestation data.`,
},
},
},
},
"expire_time": {
Type: schema.TypeString,
Computed: true,
Description: `The time at which this resource is scheduled for expiration and can no longer be used.
This is in RFC3339 text format.`,
},
"name": {
Type: schema.TypeString,
Computed: true,
Description: `The resource name for this ImportJob in the format projects/*/locations/*/keyRings/*/importJobs/*.`,
},
"public_key": {
Type: schema.TypeList,
Computed: true,
Description: `The public key with which to wrap key material prior to import. Only returned if state is 'ACTIVE'.`,
MaxItems: 1,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"pem": {
Type: schema.TypeString,
Computed: true,
Description: `The public key, encoded in PEM format. For more information, see the RFC 7468 sections
for General Considerations and Textual Encoding of Subject Public Key Info.`,
},
},
},
},
"state": {
Type: schema.TypeString,
Computed: true,
Description: `The current state of the ImportJob, indicating if it can be used.`,
},
},
}
}

func resourceKMSKeyRingImportJobCreate(d *schema.ResourceData, meta interface{}) error {
config := meta.(*Config)

obj := make(map[string]interface{})
importMethodProp, err := expandKMSKeyRingImportJobImportMethod(d.Get("import_method"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("import_method"); !isEmptyValue(reflect.ValueOf(importMethodProp)) && (ok || !reflect.DeepEqual(v, importMethodProp)) {
obj["importMethod"] = importMethodProp
}
protectionLevelProp, err := expandKMSKeyRingImportJobProtectionLevel(d.Get("protection_level"), d, config)
if err != nil {
return err
} else if v, ok := d.GetOkExists("protection_level"); !isEmptyValue(reflect.ValueOf(protectionLevelProp)) && (ok || !reflect.DeepEqual(v, protectionLevelProp)) {
obj["protectionLevel"] = protectionLevelProp
}

url, err := replaceVars(d, config, "{{KMSBasePath}}{{key_ring}}/importJobs?importJobId={{import_job_id}}")
if err != nil {
return err
}

log.Printf("[DEBUG] Creating new KeyRingImportJob: %#v", obj)
res, err := sendRequestWithTimeout(config, "POST", "", url, obj, d.Timeout(schema.TimeoutCreate))
if err != nil {
return fmt.Errorf("Error creating KeyRingImportJob: %s", err)
}
if err := d.Set("name", flattenKMSKeyRingImportJobName(res["name"], d, config)); err != nil {
return fmt.Errorf(`Error setting computed identity field "name": %s`, err)
}

// Store the ID now
id, err := replaceVars(d, config, "{{name}}")
if err != nil {
return fmt.Errorf("Error constructing id: %s", err)
}
d.SetId(id)

log.Printf("[DEBUG] Finished creating KeyRingImportJob %q: %#v", d.Id(), res)

return resourceKMSKeyRingImportJobRead(d, meta)
}

func resourceKMSKeyRingImportJobRead(d *schema.ResourceData, meta interface{}) error {
config := meta.(*Config)

url, err := replaceVars(d, config, "{{KMSBasePath}}{{name}}")
if err != nil {
return err
}

res, err := sendRequest(config, "GET", "", url, nil)
if err != nil {
return handleNotFoundError(err, d, fmt.Sprintf("KMSKeyRingImportJob %q", d.Id()))
}

if err := d.Set("name", flattenKMSKeyRingImportJobName(res["name"], d, config)); err != nil {
return fmt.Errorf("Error reading KeyRingImportJob: %s", err)
}
if err := d.Set("import_method", flattenKMSKeyRingImportJobImportMethod(res["importMethod"], d, config)); err != nil {
return fmt.Errorf("Error reading KeyRingImportJob: %s", err)
}
if err := d.Set("protection_level", flattenKMSKeyRingImportJobProtectionLevel(res["protectionLevel"], d, config)); err != nil {
return fmt.Errorf("Error reading KeyRingImportJob: %s", err)
}
if err := d.Set("expire_time", flattenKMSKeyRingImportJobExpireTime(res["expireTime"], d, config)); err != nil {
return fmt.Errorf("Error reading KeyRingImportJob: %s", err)
}
if err := d.Set("state", flattenKMSKeyRingImportJobState(res["state"], d, config)); err != nil {
return fmt.Errorf("Error reading KeyRingImportJob: %s", err)
}
if err := d.Set("public_key", flattenKMSKeyRingImportJobPublicKey(res["publicKey"], d, config)); err != nil {
return fmt.Errorf("Error reading KeyRingImportJob: %s", err)
}
if err := d.Set("attestation", flattenKMSKeyRingImportJobAttestation(res["attestation"], d, config)); err != nil {
return fmt.Errorf("Error reading KeyRingImportJob: %s", err)
}

return nil
}

func resourceKMSKeyRingImportJobDelete(d *schema.ResourceData, meta interface{}) error {
config := meta.(*Config)

url, err := replaceVars(d, config, "{{KMSBasePath}}{{name}}")
if err != nil {
return err
}

var obj map[string]interface{}
log.Printf("[DEBUG] Deleting KeyRingImportJob %q", d.Id())

res, err := sendRequestWithTimeout(config, "DELETE", "", url, obj, d.Timeout(schema.TimeoutDelete))
if err != nil {
return handleNotFoundError(err, d, "KeyRingImportJob")
}

log.Printf("[DEBUG] Finished deleting KeyRingImportJob %q: %#v", d.Id(), res)
return nil
}

func resourceKMSKeyRingImportJobImport(d *schema.ResourceData, meta interface{}) ([]*schema.ResourceData, error) {

config := meta.(*Config)

// current import_formats can't import fields with forward slashes in their value
if err := parseImportId([]string{"(?P<name>.+)"}, d, config); err != nil {
return nil, err
}

stringParts := strings.Split(d.Get("name").(string), "/")
if len(stringParts) != 8 {
return nil, fmt.Errorf(
"Saw %s when the name is expected to have shape %s",
d.Get("name"),
"projects/{{project}}/locations/{{location}}/keyRings/{{keyRing}}/importJobs/{{importJobId}}",
)
}

d.Set("key_ring", stringParts[3])
d.Set("import_job_id", stringParts[5])
return []*schema.ResourceData{d}, nil
}

func flattenKMSKeyRingImportJobName(v interface{}, d *schema.ResourceData, config *Config) interface{} {
return v
}

func flattenKMSKeyRingImportJobImportMethod(v interface{}, d *schema.ResourceData, config *Config) interface{} {
return v
}

func flattenKMSKeyRingImportJobProtectionLevel(v interface{}, d *schema.ResourceData, config *Config) interface{} {
return v
}

func flattenKMSKeyRingImportJobExpireTime(v interface{}, d *schema.ResourceData, config *Config) interface{} {
return v
}

func flattenKMSKeyRingImportJobState(v interface{}, d *schema.ResourceData, config *Config) interface{} {
return v
}

func flattenKMSKeyRingImportJobPublicKey(v interface{}, d *schema.ResourceData, config *Config) interface{} {
if v == nil {
return nil
}
original := v.(map[string]interface{})
if len(original) == 0 {
return nil
}
transformed := make(map[string]interface{})
transformed["pem"] =
flattenKMSKeyRingImportJobPublicKeyPem(original["pem"], d, config)
return []interface{}{transformed}
}
func flattenKMSKeyRingImportJobPublicKeyPem(v interface{}, d *schema.ResourceData, config *Config) interface{} {
return v
}

func flattenKMSKeyRingImportJobAttestation(v interface{}, d *schema.ResourceData, config *Config) interface{} {
if v == nil {
return nil
}
original := v.(map[string]interface{})
if len(original) == 0 {
return nil
}
transformed := make(map[string]interface{})
transformed["format"] =
flattenKMSKeyRingImportJobAttestationFormat(original["format"], d, config)
transformed["content"] =
flattenKMSKeyRingImportJobAttestationContent(original["content"], d, config)
return []interface{}{transformed}
}
func flattenKMSKeyRingImportJobAttestationFormat(v interface{}, d *schema.ResourceData, config *Config) interface{} {
return v
}

func flattenKMSKeyRingImportJobAttestationContent(v interface{}, d *schema.ResourceData, config *Config) interface{} {
return v
}

func expandKMSKeyRingImportJobImportMethod(v interface{}, d TerraformResourceData, config *Config) (interface{}, error) {
return v, nil
}

func expandKMSKeyRingImportJobProtectionLevel(v interface{}, d TerraformResourceData, config *Config) (interface{}, error) {
return v, nil
}