Skip to content

Commit a1e8209

Browse files
author
Sohan Yadav
committed
initial commit
1 parent d56e14a commit a1e8209

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@ Here is an example of how you can use this module in your inventory structure:
111111

112112
| Name | Description |
113113
|------|-------------|
114-
| transfer_server_endpoint | The endpoint of the Transfer Server (e.g. s-12345678.server.transfer.REGION.amazonaws.com) |
114+
| transfer_server_endpoint | The endpoint of the Transfer Server (e.g. s-12345678.server.transfer.REGION.amazonaws.com). |
115+
| transfer_server_id | The Server ID of the Transfer Server (e.g. s-12345678). |
115116

116117

117118

outputs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33

44
output "transfer_server_id" {
55
value = aws_transfer_server.transfer_server.*.id[0]
6-
description = "The Server ID of the Transfer Server (e.g. s-12345678)"
6+
description = "The Server ID of the Transfer Server (e.g. s-12345678)."
77
}
88

99
output "transfer_server_endpoint" {
1010
value = aws_transfer_server.transfer_server.*.endpoint[0]
11-
description = "The endpoint of the Transfer Server (e.g. s-12345678.server.transfer.REGION.amazonaws.com)"
11+
description = "The endpoint of the Transfer Server (e.g. s-12345678.server.transfer.REGION.amazonaws.com)."
1212
}

0 commit comments

Comments
 (0)