Skip to content

Commit

Permalink
Added settings constants
Browse files Browse the repository at this point in the history
  • Loading branch information
PettitWesley committed Mar 1, 2019
1 parent 2720bde commit 11dce09
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ecs-cli/modules/cli/cluster/cluster_app.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,11 @@ var newUserDataBuilder func(string, bool) userdata.UserDataBuilder = userdata.Ne
// displayTitle flag is used to print the title for the fields
const displayTitle = true

const ecsSettingEnabled = "enabled"
// Values returned by the ECS Settings API
const (
ecsSettingEnabled = "enabled"
ecsSettingDisabled = "disabled"
)

const (
ParameterKeyAsgMaxSize = "AsgMaxSize"
Expand Down

0 comments on commit 11dce09

Please sign in to comment.