-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.tf
91 lines (68 loc) · 2.1 KB
/
main.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
module "redpanda-byovpc" {
source = "redpanda-data/redpanda-byovpc/aws"
region = var.region
public_subnet_cidrs = [
"10.0.16.0/20", "10.0.32.0/20", "10.0.48.0/20"
]
}
provider "aws" {
region = var.region
}
variable "region" {
type = string
default = "us-east-2"
}
output "management_bucket_arn" {
value = module.redpanda-byovpc.management_bucket_arn
}
output "dynamodb_table_arn" {
value = module.redpanda-byovpc.dynamodb_table_arn
}
output "vpc_arn" {
value = module.redpanda-byovpc.vpc_arn
}
output "private_subnet_arns" {
value = module.redpanda-byovpc.private_subnet_arns
}
output "permissions_boundary_policy_arn" {
value = module.redpanda-byovpc.permissions_boundary_policy_arn
}
output "agent_instance_profile_arn" {
value = module.redpanda-byovpc.agent_instance_profile_arn
}
output "cloud_storage_bucket_arn" {
value = module.redpanda-byovpc.cloud_storage_bucket_arn
}
output "redpanda_agent_security_group_arn" {
value = module.redpanda-byovpc.redpanda_agent_security_group_arn
}
output "connectors_security_group_arn" {
value = module.redpanda-byovpc.connectors_security_group_arn
}
output "redpanda_node_group_security_group_arn" {
value = module.redpanda-byovpc.redpanda_node_group_security_group_arn
}
output "utility_security_group_arn" {
value = module.redpanda-byovpc.utility_security_group_arn
}
output "cluster_security_group_arn" {
value = module.redpanda-byovpc.cluster_security_group_arn
}
output "node_security_group_arn" {
value = module.redpanda-byovpc.node_security_group_arn
}
output "byovpc_rpk_user_policy_arns" {
value = module.redpanda-byovpc.byovpc_rpk_user_policy_arns
}
output "connectors_node_group_instance_profile_arn" {
value = module.redpanda-byovpc.connectors_node_group_instance_profile_arn
}
output "utility_node_group_instance_profile_arn" {
value = module.redpanda-byovpc.utility_node_group_instance_profile_arn
}
output "redpanda_node_group_instance_profile_arn" {
value = module.redpanda-byovpc.redpanda_node_group_instance_profile_arn
}
output "k8s_cluster_role_arn" {
value = module.redpanda-byovpc.k8s_cluster_role_arn
}