-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoutputs.tf
49 lines (40 loc) · 1.29 KB
/
outputs.tf
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
output "id" {
description = "The ID of the prefix list."
value = data.aws_ec2_managed_prefix_list.this.id
}
output "arn" {
description = "The ARN of the prefix list."
value = data.aws_ec2_managed_prefix_list.this.arn
}
output "owner" {
description = "The ID of the AWS account that owns this prefix list."
value = data.aws_ec2_managed_prefix_list.this.owner_id
}
output "name" {
description = "The name of the prefix list."
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
}
output "version" {
description = "Latest version of this prefix list."
value = data.aws_ec2_managed_prefix_list.this.version
}
output "max_entries" {
description = "The maximum number of entries of this prefix list."
value = data.aws_ec2_managed_prefix_list.this.max_entries
}
output "entries" {
description = "A set of prefix list entries."
value = data.aws_ec2_managed_prefix_list.this.entries
}