ARM Templates
- Variables: Parameters in ARM templates are inputs to be provided and variables are values computed to be used in the templates(not inputs)
- Outputs in ARM Templates shows the result such as urls, ip addresses etc
Create an azure sql database using ARM Template
- Manual steps: Refer Here
- Refer Here for the changes
Create a dynamodb using AWS Cloudformation
- template
{
"AWSTemplateFormatVersion" : "2010-09-09",
"Resources": {
"dynamodbTable": {
"Type": "AWS::DynamoDB::Table",
"Properties": {
"AttributeDefinitions": [ {
"AttributeName": "id",
"AttributeType": "S"
} ],
"KeySchema": [ {
"AttributeName": "id",
"KeyType": "HASH"
} ],
"TableName": "fromcf",
"ProvisionedThroughput" : {
"ReadCapacityUnits" : "1",
"WriteCapacityUnits" : "1"
}
}
}
}
}
