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
service_credentials_validate_msg="When creating a service_credentials secret, values for `service_credentials_source_service_crn` and `service_credentials_source_service_role_crn` are required."
auto_rotation_validate_msg="Value for `secret_auto_rotation_unit' must be either `day` or `month` and value for `secret_auto_rotation_interval` must be higher than 0"
error_message="When creating a service_credentials secret, values for `service_credentials_source_service_crn` and `service_credentials_source_service_role_crn` are required."
43
+
}
30
44
}
45
+
31
46
variable"imported_cert_certificate" {
32
47
type=string
33
48
description="The TLS certificate to import."
34
49
default=null
35
50
}
51
+
36
52
variable"imported_cert_private_key" {
37
53
type=string
38
54
description="(optional) The private key for the TLS certificate to import."
39
55
default=null
40
56
sensitive=true
41
57
}
58
+
42
59
variable"imported_cert_intermediate" {
43
60
type=string
44
61
description="(optional) The intermediate certificate for the TLS certificate to import."
45
62
default=null
46
63
}
64
+
47
65
variable"secret_name" {
48
66
type=string
49
67
description="Name of the secret to create."
50
68
}
69
+
51
70
variable"secret_description" {
52
71
type=string
53
72
description="Description of the secret to create."
54
73
}
74
+
55
75
variable"secret_username" {
56
76
type=string
57
77
description="Username of the secret to create. Applies only to `username_password` secret types. When `null`, an `arbitrary` secret is created."
58
78
default=null
59
79
}
80
+
60
81
variable"secret_labels" {
61
82
type=list(string)
62
83
description="Labels of the secret to create. Up to 30 labels can be created. Labels can be 2 - 30 characters, including spaces. Special characters that are not permitted include the angled brackets (<>), comma (,), colon (:), ampersand (&), and vertical pipe character (|)."
@@ -67,26 +88,40 @@ variable "secret_labels" {
67
88
error_message="Up to 30 labels can be created. Labels can be 2 - 30 characters, including spaces. Special characters that are not permitted include the angled brackets (<>), comma (,), colon (:), ampersand (&), and vertical pipe character (|)."
68
89
}
69
90
}
91
+
70
92
variable"secret_payload_password" {
71
93
type=string
72
94
description="The payload (for arbitrary secrets) or password (for username and password credentials) of the secret."
0 commit comments