Skip to content

Commit

Permalink
Add service and is_global for outputs in managed-prefix-list
Browse files Browse the repository at this point in the history
  • Loading branch information
posquit0 committed May 7, 2024
1 parent 50972d6 commit 32871d0
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.1
0.3.2
10 changes: 10 additions & 0 deletions modules/managed-prefix-list/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,16 @@ output "name" {
value = data.aws_ec2_managed_prefix_list.this.name
}

output "service" {
description = "The service name of the prefix list."
value = var.service
}

output "is_global" {
description = "Whether this is a global prefix list."
value = var.is_global
}

output "address_family" {
description = "The address family of the prefix list."
value = data.aws_ec2_managed_prefix_list.this.address_family
Expand Down
2 changes: 1 addition & 1 deletion modules/managed-prefix-list/variables.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
variable "service" {
description = "(Required) The name of the prefix list. The name must not start with `com.amazonaws`."
description = "(Required) The service name of the prefix list. The service name must not start with `com.amazonaws`."
type = string
nullable = false

Expand Down

0 comments on commit 32871d0

Please sign in to comment.