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
Copy file name to clipboardExpand all lines: README.md
+35-21Lines changed: 35 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,37 +17,51 @@ module "random_password" {
17
17
```
18
18
19
19
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
20
+
## Requirements
21
+
22
+
| Name | Version |
23
+
|------|---------|
24
+
| random | >= 2.2.0 |
25
+
26
+
## Providers
27
+
28
+
| Name | Version |
29
+
|------|---------|
30
+
| aws | n/a |
31
+
| random | >= 2.2.0 |
32
+
20
33
## Inputs
21
34
22
35
| Name | Description | Type | Default | Required |
23
-
|------|-------------|:----:|:-----:|:-----:|
24
-
| cloudtrail\_log\_group | Cloudtrail Log Group name \(required if `enable\_secret\_access\_notification=true`\)| string |`"change_me"`| no |
25
-
| create\_secret | If false, this module does nothing \(since tf doesn't support conditional modules\)| bool |`"true"`| no |
26
-
| description | Description to add to Secret | string |`""`| no |
27
-
| enable\_secret\_access\_notification | Notify SNS topic on secret access \(not recommended for most use cases\)| bool |`"false"`| no |
28
-
| length | Length of string | number | n/a | yes |
29
-
| min\_lower | Minimum number of lower case characters | number |`"0"`| no |
30
-
| min\_numeric | Minimum number of numbers | number |`"0"`| no |
31
-
| min\_special | Minimum number of special characters | number |`"0"`| no |
32
-
| min\_upper | Minimum number of upper case characters | number |`"0"`| no |
33
-
| name | Name \(omit to use name\_prefix\)| string |`""`| no |
34
-
| name\_prefix | Name Prefix \(not used if name specified\)| string |`"terraform"`| no |
35
-
| override\_special || string |`""`| no |
36
-
| pass\_version | Password version. Increment this to trigger a new password. | number |`"1"`| no |
37
-
| secret\_access\_metric\_namespace | Metric namespace to use for CloudWatch metric | string |`"SecretsManager"`| no |
38
-
| secret\_access\_notification\_arn | SNS topic to notify on secret access \(required if `enable\_secret\_access\_notification=true`\)| string |`""`| no |
39
-
| tags | Tags to add to supported resources | map(string) |`{}`| no |
40
-
| use\_lower | Use lower case characters | bool |`"true"`| no |
41
-
| use\_number | Use numbers | bool |`"true"`| no |
42
-
| use\_special | Use special characters | bool |`"true"`| no |
43
-
| use\_upper | Use upper case characters | bool |`"true"`| no |
0 commit comments