Skip to content

Commit 866a803

Browse files
committed
feat: added sg description
1 parent 9b1ade1 commit 866a803

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

_example/memcached/outputs.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
output "id" {
2+
value = module.memcached.*.id
3+
description = "memcached id."
4+
}
5+
16
output "tags" {
27
value = module.memcached.tags
38
description = "A mapping of tags to assign to the resource."

_example/redis/outputs.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@ output "redis_endpoint" {
1414
}
1515

1616
output "sg_id" {
17-
value = module.redis.*.sg_id
17+
value = module.redis.*.sg_id
18+
description = "of the security group id."
1819
}

variables.tf

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -366,8 +366,9 @@ variable "is_external" {
366366
}
367367

368368
variable "sg_ids" {
369-
type = list(any)
370-
default = []
369+
type = list(any)
370+
default = []
371+
description = "of the security group id."
371372
}
372373

373374
variable "sg_description" {

0 commit comments

Comments
 (0)