mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-19 21:31:37 +00:00
change variable new without dash (#265)
This commit is contained in:
parent
153f8d296d
commit
9191730c63
2 changed files with 12 additions and 12 deletions
|
|
@ -1,13 +1,13 @@
|
|||
log_level=3
|
||||
|
||||
# Ohio
|
||||
us-east-2_start=0
|
||||
us-east-2_end=36
|
||||
us_east_2_start=0
|
||||
us_east_2_end=36
|
||||
|
||||
# Ireland
|
||||
eu-west-1_start=37
|
||||
eu-west-1_end=72
|
||||
eu_west_1_start=37
|
||||
eu_west_1_end=72
|
||||
|
||||
# Sydney
|
||||
ap-southeast-2_start=73
|
||||
ap-southeast-2_end=110
|
||||
ap_southeast_2_start=73
|
||||
ap_southeast_2_end=110
|
||||
|
|
|
|||
|
|
@ -15,18 +15,18 @@ locals {
|
|||
regions = [
|
||||
{
|
||||
"name": "us-east-2", // Ohio
|
||||
"start": local.envs["us-east-2_start"],
|
||||
"end": local.envs["us-east-2_end"],
|
||||
"start": local.envs["us_east_2_start"],
|
||||
"end": local.envs["us_east_2_end"],
|
||||
},
|
||||
{
|
||||
"name": "eu-west-1", // Ireland
|
||||
"start": local.envs["eu-west-1_start"],
|
||||
"end": local.envs["eu-west-1_end"],
|
||||
"start": local.envs["eu_west_1_start"],
|
||||
"end": local.envs["eu_west_1_end"],
|
||||
},
|
||||
{
|
||||
"name": "ap-southeast-2", // Sydney
|
||||
"start": local.envs["ap-southeast-2_start"],
|
||||
"end": local.envs["ap-southeast-2_end"],
|
||||
"start": local.envs["ap_southeast_2_start"],
|
||||
"end": local.envs["ap_southeast_2_end"],
|
||||
}
|
||||
]
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue