We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5d2b32 commit 9d5df28Copy full SHA for 9d5df28
README.md
@@ -134,11 +134,28 @@ module "nodes" {
134
os_img_url = "file:///home/myuser/ubuntu-20.04-server-cloudimg-amd64.img"
135
}
136
137
-output "ip_addresses" {
+output "outputs" {
138
value = module.nodes
139
140
```
141
142
+## Module output example
143
+
144
+```json
145
+output_data = {
146
+ "ip_address" = [
147
+ "192.168.165.151",
148
+ "192.168.165.152",
149
150
+ ]
151
+ "name" = [
152
+ "server01",
153
+ "server02",
154
+ "server03",
155
156
+}
157
+```
158
159
## License
160
161
MIT
0 commit comments