Created attachment 1201791 [details] blank default values Description of problem: Version-Release number of selected component (if applicable): How reproducible: Steps to Reproduce: 1. Create a template in cloudformation -orchestration templates 2. Create a dialog 3. Default values are not shown as in screenshot. Actual results: Expected results: Additional info: Build : 5.6.2.0.20160913114355_70e9086 =============================== Template used : { "AWSTemplateFormatVersion" : "2010-09-09", "Description" : "AWS CloudFormation Sample Template DynamoDB_Table", "Parameters" : { "HaskKeyElementName" : { "Description" : "HashType PrimaryKey Name", "Type" : "String", "AllowedPattern" : "[a-zA-Z0-9]*", "Default" : "SSS", "MinLength": "1", "MaxLength": "2048", "ConstraintDescription" : "must contain only alphanumberic characters" }, "HaskKeyElementType" : { "Description" : "HashType PrimaryKey Type", "Type" : "String", "Default" : "S", "AllowedPattern" : "[S|N]", "MinLength": "1", "MaxLength": "1", "ConstraintDescription" : "must be either S or N" }, "ReadCapacityUnits" : { "Description" : "Provisioned read throughput", "Type" : "Number", "Default" : "5", "MinValue": "5", "MaxValue": "10000", "ConstraintDescription" : "must be between 5 and 10000" }, "WriteCapacityUnits" : { "Description" : "Provisioned write throughput", "Type" : "Number", "Default" : "10", "MinValue": "5", "MaxValue": "10000", "ConstraintDescription" : "must be between 5 and 10000" } }, "Resources" : { "myDynamoDBTable" : { "Type" : "AWS::DynamoDB::Table", "Properties" : { "AttributeDefinitions": [ { "AttributeName" : {"Ref" : "HaskKeyElementName"}, "AttributeType" : {"Ref" : "HaskKeyElementType"} } ], "KeySchema": [ { "AttributeName": {"Ref" : "HaskKeyElementName"}, "KeyType": "HASH" } ], "ProvisionedThroughput" : { "ReadCapacityUnits" : {"Ref" : "ReadCapacityUnits"}, "WriteCapacityUnits" : {"Ref" : "WriteCapacityUnits"} } } } }, "Outputs" : { "TableName" : { "Value" : {"Ref" : "myDynamoDBTable"}, "Description" : "Table name of the newly created DynamoDB table" } } }
Shveta - Please provide the full version number (normally provided in the description). Erik - Please work with Bill if you need help reproducing this issue.
It's there under Additional Info . Build : 5.6.2.0.20160913114355_70e9086
I think this is the same reason why the Azure Mode value doesn't default to the default value.
This seems to be the case with all service dialog elements in 5.6.2, they don't keep a default value when set
Same in 5.6.2.1.20160922130607_92d5b5e
*** This bug has been marked as a duplicate of bug 1383774 ***