SecretsManagerBuilder¶
Bases: AbstractAWSResourceBuilder['SecretsManagerBuilder', SecretConfig]
Builder for creating AWS Secrets Manager secrets with organizational standards.
Supports both database secrets with auto-generated passwords and standard secrets with custom key-value pairs. Automatically handles cross-account sharing and Parameter Store integration.
Source code in mare_aws_common_lib/builders/secrets_manager_builder.py
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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 | |
Attributes¶
_resource_type = AWSResourceType.SECRET
class-attribute
instance-attribute
¶
Functions¶
_control_consistency()
¶
Validate builder configuration and internal state consistency.
Validates the SecretConfig using Pydantic models to ensure all required fields are present and database secrets have correct keys.
Raises:
| Type | Description |
|---|---|
ValueError
|
If basic builder validation fails |
ValidationError
|
If configuration validation fails. Error details are printed to console for debugging. |
Source code in mare_aws_common_lib/builders/secrets_manager_builder.py
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 | |
_create_rds_secret(scope)
¶
Create a database secret with auto-generated password.
Creates a secret with username and auto-generated password using SecretStringGenerator. Supports optional app user credentials.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
scope
|
Construct
|
CDK construct scope |
required |
Returns:
| Type | Description |
|---|---|
Secret
|
Database secret with auto-generated password |
Source code in mare_aws_common_lib/builders/secrets_manager_builder.py
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 | |
_create_standard_secret(scope)
¶
Create a standard secret with custom key-value pairs.
Creates a secret with provided values. Supports automatic password generation for values set to "GENERATE_PASSWORD".
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
scope
|
Construct
|
CDK construct scope |
required |
Returns:
| Type | Description |
|---|---|
Secret
|
Standard secret with custom values |
Source code in mare_aws_common_lib/builders/secrets_manager_builder.py
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | |
_set_config()
¶
Create and validate the AWS Secrets Manager configuration.
Merges the base builder configuration with Secrets Manager-specific parameters to create a validated SecretConfig object. The configuration includes secret naming, encryption settings, rotation options, and other Secrets Manager-specific parameters required for secret creation.
The method combines
- Base configuration from self._builder_config (tags, environment, etc.)
- Secrets-specific parameter: secret_base_name from self._secret_base_name
Raises:
| Type | Description |
|---|---|
ValidationError
|
If the SecretConfig validation fails. Common causes: |
ValueError
|
If secret_base_name has not been set via set_secret_base_name() |
Side Effects
Sets self._config to a validated SecretConfig instance that can be accessed through the config property after this method completes.
Source code in mare_aws_common_lib/builders/secrets_manager_builder.py
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 | |
build(scope)
¶
Build and return the configured Secrets Manager secret.
Creates either a database secret with auto-generated passwords or a standard secret with custom values. Automatically stores secret references in Parameter Store and handles cross-account sharing.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
scope
|
Construct
|
CDK construct scope where the secret will be created |
required |
Returns:
| Type | Description |
|---|---|
Secret
|
Configured Secrets Manager Secret instance |
Raises:
| Type | Description |
|---|---|
ValidationError
|
If secret configuration validation fails |
ValueError
|
If required secret base name is not set |
Source code in mare_aws_common_lib/builders/secrets_manager_builder.py
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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | |
reset()
¶
Reset the builder to its initial state.
Clears all internal state including secret instance, configuration, and secret base name. Called internally to prepare for a new build.
Source code in mare_aws_common_lib/builders/secrets_manager_builder.py
27 28 29 30 31 32 33 34 35 | |
set_secret_base_name(name)
¶
Set the base name for the secret.
The base name will be used to construct the final secret name following the pattern: {base_name}-secret
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Base name for the secret (e.g., 'my-app-db', 'api-keys') |
required |
Returns:
| Type | Description |
|---|---|
SecretsManagerBuilder
|
Self for method chaining |
Source code in mare_aws_common_lib/builders/secrets_manager_builder.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 | |