You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: "Key usage. Keys with a usage set to 'symmetric_encryption' can encrypt and decrypt data using the AES-256-GCM key algorithm. Possible values: symmetric_encryption, asymmetric_encryption, asymmetric_signing.",
"rotation_period": {Type: schema.TypeString, Optional: true, Description: "Time interval between two key rotations. The minimum duration is 24 hours and the maximum duration is 1 year (876000 hours)."},
60
+
"next_rotation_at": {Type: schema.TypeString, Computed: true, Description: "Timestamp indicating the next scheduled rotation."},
56
61
},
57
62
},
58
63
},
59
64
"unprotected": {
60
-
Type: schema.TypeBool,
61
-
Optional: true,
62
-
Default: false,
65
+
Type: schema.TypeBool,
66
+
Optional: true,
67
+
Default: false,
68
+
Description: "If true, the key is not protected against deletion.",
63
69
},
64
70
"origin": {
65
71
Type: schema.TypeString,
66
72
Optional: true,
67
73
ValidateFunc: validation.StringInSlice([]string{
68
74
"scaleway_kms", "external",
69
75
}, false),
76
+
Description: "Origin of the key material. Possible values: scaleway_kms (Key Manager generates the key material), external (key material comes from an external source).",
0 commit comments