File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed
modules/managed-prefix-list Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 1
- 0.3.1
1
+ 0.3.2
Original file line number Diff line number Diff line change @@ -18,6 +18,16 @@ output "name" {
18
18
value = data. aws_ec2_managed_prefix_list . this . name
19
19
}
20
20
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
+
21
31
output "address_family" {
22
32
description = " The address family of the prefix list."
23
33
value = data. aws_ec2_managed_prefix_list . this . address_family
Original file line number Diff line number Diff line change 1
1
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`."
3
3
type = string
4
4
nullable = false
5
5
You can’t perform that action at this time.
0 commit comments