-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoutputs.tf
109 lines (88 loc) · 3.38 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
output "cloud_name" {
description = "Defines where the cloud provider and region where the service is hosted in."
value = try(aiven_kafka.this[0].cloud_name, "")
}
output "components" {
description = "Service component information objects."
value = try(aiven_kafka.this[0].components, "")
}
output "disk_space_cap" {
description = "The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project."
value = try(aiven_kafka.this[0].disk_space_cap, "")
}
output "disk_space_default" {
description = "The default disk space of the service, possible values depend on the service type, the cloud provider and the project."
value = try(aiven_kafka.this[0].disk_space_default, "")
}
output "disk_space_step" {
description = "The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. "
value = try(aiven_kafka.this[0].disk_space_default, "")
}
output "id" {
description = "The ID of this resource."
value = try(aiven_kafka.this[0].id, "")
}
output "maintenance_window_dow" {
description = "Day of week when maintenance operations should be performed."
value = try(aiven_kafka.this[0].maintenance_window_dow, "")
}
output "maintenance_window_time" {
description = "Time of day when maintenance operations should be performed."
value = try(aiven_kafka.this[0].maintenance_window_time, "")
}
output "plan" {
description = "Defines what kind of computing resources are allocated for the service."
value = try(aiven_kafka.this[0].plan, "")
}
output "project" {
description = "Aiven Cloud Project Name."
value = try(aiven_kafka.this[0].project, "")
}
output "service_host" {
description = "The hostname of the service."
value = try(aiven_kafka.this[0].service_host, "")
}
output "service_integrations" {
description = "Service integrations to specify when creating a service."
value = try(aiven_kafka.this[0].service_integrations, "")
}
output "service_name" {
description = "Specifies the actual name of the service."
value = try(aiven_kafka.this[0].service_name, "")
}
output "service_password" {
description = "Password used for connecting to the service, if applicable."
sensitive = true
value = try(aiven_kafka.this[0].service_password, "")
}
output "service_port" {
description = "The port of the service."
value = try(aiven_kafka.this[0].service_port, "")
}
output "service_type" {
description = "Aiven internal service type code."
value = try(aiven_kafka.this[0].service_type, "")
}
output "service_uri" {
description = "URI for connecting to the service."
sensitive = true
value = try(aiven_kafka.this[0].service_uri, "")
}
output "service_username" {
description = "Username used for connecting to the service."
value = try(aiven_kafka.this[0].service_username, "")
}
output "static_ips" {
description = "Static IPs that are going to be associated with this service."
value = try(aiven_kafka.this[0].static_ips, "")
}
output "kafka_user_config" {
description = "Kafka user configurable settings."
sensitive = true
value = try(aiven_kafka.this[0].kafka_user_config, "")
}
output "kafka" {
description = "Kafka server provided values."
sensitive = true
value = try(aiven_kafka.this[0].kafka, "")
}