Skip to content

Commit

Permalink
Change to allow empty stack parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
mbj committed Mar 4, 2024
1 parent 18be470 commit ea09b04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stack-deploy/src/StackDeploy/Parameters.hs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ import qualified Stratosphere as CFT
-- import qualified Stratosphere as CFT
-- :}

type ParameterName = BoundText "StackDeploy.Parameter.Name"
type ParameterValue = BoundText "StackDeploy.Parameter.Value"
type ParameterName = BoundText' "StackDeploy.Parameter.Name" '(1, 255)
type ParameterValue = BoundText' "StackDeploy.Parameter.Value" '(0, 4096)

data Parameter = Parameter
{ name :: ParameterName
Expand Down

0 comments on commit ea09b04

Please sign in to comment.