-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoutputs.tf
More file actions
64 lines (52 loc) · 1.86 KB
/
Copy pathoutputs.tf
File metadata and controls
64 lines (52 loc) · 1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
output "id" {
description = "The name of the MemoryDB cluster"
value = one(aws_memorydb_cluster.default[*].id)
}
output "arn" {
description = "The ARN of the MemoryDB cluster"
value = one(aws_memorydb_cluster.default[*].arn)
}
output "cluster_endpoint" {
description = "The endpoint of the MemoryDB cluster"
value = one(aws_memorydb_cluster.default[*].cluster_endpoint)
}
output "engine_patch_version" {
description = "The Redis engine version"
value = one(aws_memorydb_cluster.default[*].engine_patch_version)
}
output "parameter_group_id" {
description = "The name of the MemoryDB parameter group"
value = one(aws_memorydb_parameter_group.default[*].id)
}
output "parameter_group_arn" {
description = "The ARN of the MemoryDB parameter group"
value = one(aws_memorydb_parameter_group.default[*].arn)
}
output "subnet_group_id" {
description = "The name of the MemoryDB subnet group"
value = one(aws_memorydb_subnet_group.default[*].id)
}
output "subnet_group_arn" {
description = "The ARN of the MemoryDB subnet group"
value = one(aws_memorydb_subnet_group.default[*].arn)
}
output "shards" {
description = "The shard details for the MemoryDB cluster"
value = one(aws_memorydb_cluster.default[*].shards)
}
output "admin_username" {
description = "The username for the MemoryDB user"
value = one(aws_memorydb_user.admin[*].user_name)
}
output "admin_arn" {
description = "The ARN of the MemoryDB user"
value = one(aws_memorydb_user.admin[*].arn)
}
output "admin_acl_arn" {
description = "The ARN of the MemoryDB user's ACL"
value = one(aws_memorydb_acl.default[*].arn)
}
output "admin_password_ssm_parameter_name" {
description = "The name of the SSM parameter storing the password for the MemoryDB user"
value = one(aws_ssm_parameter.admin_password[*].name)
}