Use actual hash rather than string: 'hash'
parent
63fec81dc3
commit
ac4669ba73
|
|
@ -1036,7 +1036,7 @@ class AWSBuildEnvironment {
|
|||
const parameters = [
|
||||
{ ParameterKey: 'EnvironmentName', ParameterValue: 'development' },
|
||||
{ ParameterKey: 'Storage', ParameterValue: `${baseStackName}-storage` },
|
||||
{ ParameterKey: 'Version', ParameterValue: `hash` },
|
||||
{ ParameterKey: 'Version', ParameterValue: hash },
|
||||
];
|
||||
const updateInput = {
|
||||
StackName: baseStackName,
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -243,7 +243,7 @@ class AWSBuildEnvironment implements RemoteBuilderProviderInterface {
|
|||
const parameters: SDK.CloudFormation.Parameter[] = [
|
||||
{ ParameterKey: 'EnvironmentName', ParameterValue: 'development' },
|
||||
{ ParameterKey: 'Storage', ParameterValue: `${baseStackName}-storage` },
|
||||
{ ParameterKey: 'Version', ParameterValue: `hash` },
|
||||
{ ParameterKey: 'Version', ParameterValue: hash },
|
||||
];
|
||||
const updateInput: SDK.CloudFormation.UpdateStackInput = {
|
||||
StackName: baseStackName,
|
||||
|
|
|
|||
Loading…
Reference in New Issue