forked from hashicorp/terraform-provider-google
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata_source_google_kms_secret.go
83 lines (66 loc) · 1.96 KB
/
data_source_google_kms_secret.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package google
import (
"google.golang.org/api/cloudkms/v1"
"encoding/base64"
"fmt"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"log"
)
func dataSourceGoogleKmsSecret() *schema.Resource {
return &schema.Resource{
Read: dataSourceGoogleKmsSecretRead,
Schema: map[string]*schema.Schema{
"crypto_key": {
Type: schema.TypeString,
Required: true,
},
"ciphertext": {
Type: schema.TypeString,
Required: true,
},
"plaintext": {
Type: schema.TypeString,
Computed: true,
Sensitive: true,
},
"additional_authenticated_data": {
Type: schema.TypeString,
Optional: true,
},
},
}
}
func dataSourceGoogleKmsSecretRead(d *schema.ResourceData, meta interface{}) error {
var m providerMeta
err := d.GetProviderMeta(&m)
if err != nil {
return err
}
config := meta.(*Config)
config.clientKms.UserAgent = fmt.Sprintf("%s %s", config.clientKms.UserAgent, m.ModuleName)
cryptoKeyId, err := parseKmsCryptoKeyId(d.Get("crypto_key").(string), config)
if err != nil {
return err
}
ciphertext := d.Get("ciphertext").(string)
kmsDecryptRequest := &cloudkms.DecryptRequest{
Ciphertext: ciphertext,
}
if aad, ok := d.GetOk("additional_authenticated_data"); ok {
kmsDecryptRequest.AdditionalAuthenticatedData = aad.(string)
}
decryptResponse, err := config.clientKms.Projects.Locations.KeyRings.CryptoKeys.Decrypt(cryptoKeyId.cryptoKeyId(), kmsDecryptRequest).Do()
if err != nil {
return fmt.Errorf("Error decrypting ciphertext: %s", err)
}
plaintext, err := base64.StdEncoding.DecodeString(decryptResponse.Plaintext)
if err != nil {
return fmt.Errorf("Error decoding base64 response: %s", err)
}
log.Printf("[INFO] Successfully decrypted ciphertext: %s", ciphertext)
if err := d.Set("plaintext", string(plaintext[:])); err != nil {
return fmt.Errorf("Error setting plaintext: %s", err)
}
d.SetId(fmt.Sprintf("%s:%s", d.Get("crypto_key").(string), ciphertext))
return nil
}