Skip to content

Commit a5af023

Browse files
thxCodeshanewxy
authored andcommitted
refactor: remove endpoints output
Signed-off-by: thxCode <thxcode0824@gmail.com>
1 parent 2360538 commit a5af023

File tree

6 files changed

+0
-34
lines changed

6 files changed

+0
-34
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,6 @@ No modules.
9292
| <a name="output_connection"></a> [connection](#output\_connection) | The connection, a string combined host and port, might be a comma separated string or a single string. |
9393
| <a name="output_connection_readonly"></a> [connection\_readonly](#output\_connection\_readonly) | The readonly connection, a string combined host and port, might be a comma separated string or a single string. |
9494
| <a name="output_context"></a> [context](#output\_context) | The input context, a map, which is used for orchestration. |
95-
| <a name="output_endpoints"></a> [endpoints](#output\_endpoints) | The endpoints, a list of string combined host and port. |
96-
| <a name="output_endpoints_readonly"></a> [endpoints\_readonly](#output\_endpoints\_readonly) | The readonly endpoints, a list of string combined host and port. |
9795
| <a name="output_password"></a> [password](#output\_password) | The password of the account to access the service. |
9896
| <a name="output_port"></a> [port](#output\_port) | The port of the service. |
9997
| <a name="output_refer"></a> [refer](#output\_refer) | The refer, a map, including hosts, ports and account, which is used for dependencies or collaborations. |

examples/replication/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,6 @@ No inputs.
5454
| <a name="output_connection"></a> [connection](#output\_connection) | n/a |
5555
| <a name="output_connection_readonly"></a> [connection\_readonly](#output\_connection\_readonly) | n/a |
5656
| <a name="output_context"></a> [context](#output\_context) | n/a |
57-
| <a name="output_endpoints"></a> [endpoints](#output\_endpoints) | n/a |
58-
| <a name="output_endpoints_readonly"></a> [endpoints\_readonly](#output\_endpoints\_readonly) | n/a |
5957
| <a name="output_password"></a> [password](#output\_password) | n/a |
6058
| <a name="output_port"></a> [port](#output\_port) | n/a |
6159
| <a name="output_refer"></a> [refer](#output\_refer) | n/a |

examples/replication/main.tf

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,3 @@ output "port" {
8989
output "password" {
9090
value = nonsensitive(module.this.password)
9191
}
92-
93-
output "endpoints" {
94-
value = module.this.endpoints
95-
}
96-
97-
output "endpoints_readonly" {
98-
value = module.this.endpoints_readonly
99-
}

examples/standalone/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,6 @@ No inputs.
5858
| <a name="output_connection"></a> [connection](#output\_connection) | n/a |
5959
| <a name="output_connection_readonly"></a> [connection\_readonly](#output\_connection\_readonly) | n/a |
6060
| <a name="output_context"></a> [context](#output\_context) | n/a |
61-
| <a name="output_endpoints"></a> [endpoints](#output\_endpoints) | n/a |
62-
| <a name="output_endpoints_readonly"></a> [endpoints\_readonly](#output\_endpoints\_readonly) | n/a |
6361
| <a name="output_password"></a> [password](#output\_password) | n/a |
6462
| <a name="output_port"></a> [port](#output\_port) | n/a |
6563
| <a name="output_refer"></a> [refer](#output\_refer) | n/a |

examples/standalone/main.tf

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,3 @@ output "port" {
111111
output "password" {
112112
value = nonsensitive(module.this.password)
113113
}
114-
115-
output "endpoints" {
116-
value = module.this.endpoints
117-
}
118-
119-
output "endpoints_readonly" {
120-
value = module.this.endpoints_readonly
121-
}

outputs.tf

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -80,15 +80,3 @@ output "password" {
8080
description = "The password of the account to access the service."
8181
sensitive = true
8282
}
83-
84-
## UI display
85-
86-
output "endpoints" {
87-
description = "The endpoints, a list of string combined host and port."
88-
value = local.endpoints
89-
}
90-
91-
output "endpoints_readonly" {
92-
description = "The readonly endpoints, a list of string combined host and port."
93-
value = local.endpoints_readonly
94-
}

0 commit comments

Comments
 (0)