We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f99788 commit c35156dCopy full SHA for c35156d
provider.tf
@@ -4,6 +4,10 @@ terraform {
4
source = "hashicorp/aws"
5
version = "5.20.1"
6
}
7
+ random = {
8
+ source = "hashicorp/random"
9
+ version = "3.5.1"
10
+ }
11
12
13
@@ -16,4 +20,7 @@ provider "aws" {
16
20
Source = "https://github.com/kunduso/add-asg-elb-terraform"
17
21
18
22
23
+}
24
+provider "random" {
25
+ # Configuration options
19
26
random.tf
@@ -0,0 +1,6 @@
1
+#https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/auth.html#auth-overview
2
+resource "random_password" "auth" {
3
+ length = 90
+ special = true
+ override_special = "!&#$^<>-"
0 commit comments