Multi cloud classroom notes – 22/May/2024

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

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"
              }

           }
        }
        
    }
}
Published
Categorized as Uncategorized Tagged

By continuous learner

devops & cloud enthusiastic learner

Leave a ReplyCancel reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Please turn AdBlock off
Animated Social Media Icons by Acurax Wordpress Development Company

Discover more from Direct DevOps from Quality Thought

Subscribe now to keep reading and get access to the full archive.

Continue reading

Exit mobile version
%%footer%%