We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29ae830 commit efa98c4Copy full SHA for efa98c4
cache-extension-demo/SAM/template.yaml
@@ -11,11 +11,16 @@ Parameters:
11
Type: String
12
Description: Please enter a name for the database
13
Default: "DynamoDbTable"
14
+ ParameterValue:
15
+ Type: String
16
+ Description: Parameter value stored in Systems Manager Parameter Store
17
+ Default: "MyParameter"
18
SecretValue:
19
20
Description: Secret value stored in AWS Secrets manager
- Default: "Hello World"
21
+ Default: "MySecret"
22
NoEcho: true
23
+
24
25
Resources:
26
# Sample Dynamo DB Table
@@ -42,7 +47,8 @@ Resources:
42
47
Properties:
43
48
Name: "CacheExtensions_Parameter1"
44
49
Type: "String"
45
- Value: "Parameter_value"
50
+ Value:
51
+ Ref: ParameterValue
46
52
53
# Sample Secret record
54
SecretRecord:
0 commit comments