Skip to content

Commit cb19010

Browse files
author
Ulfat
committed
Fix indent
1 parent a933130 commit cb19010

File tree

1 file changed

+84
-84
lines changed

1 file changed

+84
-84
lines changed

docs/deployment-design-aws.md

+84-84
Original file line numberDiff line numberDiff line change
@@ -29,28 +29,28 @@
2929

3030
- Tendermint:
3131

32-
`config.toml` file:
32+
`config.toml` file:
3333

34-
```toml
35-
[p2p]
36-
pex = false
37-
persistent_peers = # `Private Sentry` nodes with private IPs
38-
addr_book_strict = false
34+
```toml
35+
[p2p]
36+
pex = false
37+
persistent_peers = # `Private Sentry` nodes with private IPs
38+
addr_book_strict = false
3939

40-
[statesync] # only for `Non-genesis Validator` nodes
41-
enable = true
42-
rpc_servers = # existing `Genesis Validator` / `Sentry` nodes' RPC endpoints
43-
trust_height = "trust-height"
44-
trust_hash = "trust-hash"
45-
```
40+
[statesync] # only for `Non-genesis Validator` nodes
41+
enable = true
42+
rpc_servers = # existing `Genesis Validator` / `Sentry` nodes' RPC endpoints
43+
trust_height = "trust-height"
44+
trust_hash = "trust-hash"
45+
```
4646

47-
`app.toml` file:
47+
`app.toml` file:
4848

49-
```toml
50-
[state-sync]
51-
snapshot-interval = "snapshot-interval"
52-
snapshot-keep-recent = "snapshot-keep-recent"
53-
```
49+
```toml
50+
[state-sync]
51+
snapshot-interval = "snapshot-interval"
52+
snapshot-keep-recent = "snapshot-keep-recent"
53+
```
5454

5555
- AWS:
5656
- Instance type = EC2 instance
@@ -68,30 +68,30 @@ snapshot-keep-recent = "snapshot-keep-recent"
6868

6969
- Tendermint:
7070

71-
`config.toml` file:
71+
`config.toml` file:
7272

73-
```toml
74-
[p2p]
75-
pex = true
76-
persistent_peers = # `Validator` node with private IP + other orgs' validator/sentry nodes with public IPs
77-
private_peer_ids = # `Validator` node id
78-
unconditional_peers = # `Validator` node id
79-
addr_book_strict = false
73+
```toml
74+
[p2p]
75+
pex = true
76+
persistent_peers = # `Validator` node with private IP + other orgs' validator/sentry nodes with public IPs
77+
private_peer_ids = # `Validator` node id
78+
unconditional_peers = # `Validator` node id
79+
addr_book_strict = false
8080

81-
[statesync]
82-
enable = true
83-
rpc_servers = # `Validator` node's RPC endpoint
84-
trust_height = "trust-height"
85-
trust_hash = "trust-hash"
86-
```
81+
[statesync]
82+
enable = true
83+
rpc_servers = # `Validator` node's RPC endpoint
84+
trust_height = "trust-height"
85+
trust_hash = "trust-hash"
86+
```
8787

88-
`app.toml` file:
88+
`app.toml` file:
8989

90-
```toml
91-
[state-sync]
92-
snapshot-interval = "snapshot-interval"
93-
snapshot-keep-recent = "snapshot-keep-recent"
94-
```
90+
```toml
91+
[state-sync]
92+
snapshot-interval = "snapshot-interval"
93+
snapshot-keep-recent = "snapshot-keep-recent"
94+
```
9595

9696
- AWS:
9797
- Instance type = EC2 instance
@@ -110,27 +110,27 @@ snapshot-keep-recent = "snapshot-keep-recent"
110110

111111
- Tendermint:
112112

113-
`config.toml` file:
113+
`config.toml` file:
114114

115-
```toml
116-
[p2p]
117-
pex = true
118-
persistent_peers = # `Private Sentry` nodes with private IPs
119-
addr_book_strict = false
115+
```toml
116+
[p2p]
117+
pex = true
118+
persistent_peers = # `Private Sentry` nodes with private IPs
119+
addr_book_strict = false
120120

121-
[statesync]
122-
enable = true
123-
rpc_servers = # `Private Sentry` nodes' RPC endpoints
124-
trust_height = "trust-height"
125-
trust_hash = "trust-hash"
126-
```
121+
[statesync]
122+
enable = true
123+
rpc_servers = # `Private Sentry` nodes' RPC endpoints
124+
trust_height = "trust-height"
125+
trust_hash = "trust-hash"
126+
```
127127

128-
`app.toml` file:
128+
`app.toml` file:
129129

130-
```toml
131-
[api]
132-
enable = true
133-
```
130+
```toml
131+
[api]
132+
enable = true
133+
```
134134

135135
- AWS:
136136
- Instance type = EC2 instance
@@ -147,27 +147,27 @@ enable = true
147147

148148
- Tendermint:
149149

150-
`config.toml` file:
150+
`config.toml` file:
151151

152-
```toml
153-
[p2p]
154-
pex = true
155-
persistent_peers = # `Private Sentry` nodes with private IPs
152+
```toml
153+
[p2p]
154+
pex = true
155+
persistent_peers = # `Private Sentry` nodes with private IPs
156156

157-
[statesync]
158-
enable = true
159-
rpc_servers = # `Private Sentry` nodes' RPC endpoints
160-
trust_height = "trust-height"
161-
trust_hash = "trust-hash"
162-
```
157+
[statesync]
158+
enable = true
159+
rpc_servers = # `Private Sentry` nodes' RPC endpoints
160+
trust_height = "trust-height"
161+
trust_hash = "trust-hash"
162+
```
163163

164-
`app.toml` file:
164+
`app.toml` file:
165165

166-
```toml
167-
[state-sync]
168-
snapshot-interval = "snapshot-interval"
169-
snapshot-keep-recent = "snapshot-keep-recent"
170-
```
166+
```toml
167+
[state-sync]
168+
snapshot-interval = "snapshot-interval"
169+
snapshot-keep-recent = "snapshot-keep-recent"
170+
```
171171

172172
- AWS:
173173
- Instance type = EC2 instance
@@ -185,20 +185,20 @@ snapshot-keep-recent = "snapshot-keep-recent"
185185

186186
- Tendermint:
187187

188-
`config.toml` file:
188+
`config.toml` file:
189189

190-
```toml
191-
[p2p]
192-
pex = true
193-
seed_mode = true
194-
persistent_peers = # `Public Sentry` nodes with public IP
190+
```toml
191+
[p2p]
192+
pex = true
193+
seed_mode = true
194+
persistent_peers = # `Public Sentry` nodes with public IP
195195

196-
[statesync]
197-
enable = true
198-
rpc_servers = # `Private Sentry` nodes' RPC endpoints
199-
trust_height = "trust-height"
200-
trust_hash = "trust-hash"
201-
```
196+
[statesync]
197+
enable = true
198+
rpc_servers = # `Private Sentry` nodes' RPC endpoints
199+
trust_height = "trust-height"
200+
trust_hash = "trust-hash"
201+
```
202202

203203
- AWS:
204204
- Instance type = EC2 instance

0 commit comments

Comments
 (0)