Skip to content

Commit 32871d0

Browse files
committed
Add service and is_global for outputs in managed-prefix-list
1 parent 50972d6 commit 32871d0

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.1
1+
0.3.2

modules/managed-prefix-list/outputs.tf

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,16 @@ output "name" {
1818
value = data.aws_ec2_managed_prefix_list.this.name
1919
}
2020

21+
output "service" {
22+
description = "The service name of the prefix list."
23+
value = var.service
24+
}
25+
26+
output "is_global" {
27+
description = "Whether this is a global prefix list."
28+
value = var.is_global
29+
}
30+
2131
output "address_family" {
2232
description = "The address family of the prefix list."
2333
value = data.aws_ec2_managed_prefix_list.this.address_family

modules/managed-prefix-list/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
variable "service" {
2-
description = "(Required) The name of the prefix list. The name must not start with `com.amazonaws`."
2+
description = "(Required) The service name of the prefix list. The service name must not start with `com.amazonaws`."
33
type = string
44
nullable = false
55

0 commit comments

Comments
 (0)