Cloudformation appeared scary to me untill I went hrough this...thanks!
@amanbagrecha2 жыл бұрын
Really good explanation. The fundamentals were really necessary and you've done a great job!
@LaimonasGaming2 жыл бұрын
Thanks, appreciate feedback :)
@AVISH747 Жыл бұрын
This is awesome.. was looking out for just this.
@amitpadgaonkar88302 жыл бұрын
Thank you for the tutorial. Where can I get the slides?
@hakeemshahzadibegum14786 ай бұрын
Nice video clip on AWS
@jamilabbasOfficial Жыл бұрын
Thanks for such a great tutorial on cloud formation.
@bmariambete43222 жыл бұрын
It was great .Provided with very easy way. Thanks
@LaimonasGaming2 жыл бұрын
Great to hear that!
@samirsingh108 Жыл бұрын
Thank You for this useful tutorial. Great explanation with examples.
@maycogarcia47887 ай бұрын
Very good.
@geminishoeland27382 жыл бұрын
hi its help me .kindly suggest me that we can create parameter as a separate stack and from the parameter stack we can create another stack
@sangeetagentyal37022 жыл бұрын
How to add 'QueueUrl' while giving call to SQS through step function in cloud-formation template?
@datavesr Жыл бұрын
1)First, define an Amazon SQS queue resource: Resources: MyQueue: Type: AWS::SQS::Queue Properties: QueueName: my-queue-name 2)Next, define the AWS Step Functions state machine: Resources: MyStateMachine: Type: AWS::StepFunctions::StateMachine Properties: StateMachineName: my-state-machine-name DefinitionString: Fn::Sub: - | { "Comment": "My state machine", "StartAt": "SendSQSMessage", "States": { "SendSQSMessage": { "Type": "Task", "Resource": "arn:aws:states:::sqs:sendMessage", "Parameters": { "QueueUrl.$": "$.queueUrl", "MessageBody.$": "$.messageBody" }, "End": true } } } - queueUrl: !GetAtt MyQueue.Arn messageBody: "Hello, world!" 3)Finally, define the CloudFormation stack parameters that include the 'QueueUrl': Parameters: QueueUrl: Type: String Default: !GetAtt MyQueue.Arn
@yogendarmoola9642 жыл бұрын
hi,how to attach a role to existing ec2 instance in cloudformation.
@LaimonasGaming2 жыл бұрын
If EC2 was deployed without using CloudFormation, then it is very difficult, advanced AWS CDK usage is required. Better redeploy your EC2 (+ Role) using CloudFormation.
@NourAslaoui3 жыл бұрын
I honestly find Cloudformation templates way more humain-readable than the DOMs
@LaimonasGaming2 жыл бұрын
Interesting. I couldn't get used to CF templates after 5 years. AWS CDK for me was the 21st-century discovery.
@mattongbp2 жыл бұрын
DOMs are JSON with a lot of difficult syntax and YAML is much easier.
@dataslid Жыл бұрын
Amazing aws tuts thanks
@bharatkendre98782 жыл бұрын
Thank you very much. Good explanation.
@dhaoubouzayani65713 жыл бұрын
Think you. Can I have the code please ?
@ZahoorKhan-qx6gt4 ай бұрын
This is not zero to hero. This is zero to beginner.
@aisimeon Жыл бұрын
I disagree, yaml is better. use cdk just to read your yml. yes, maybe it will take more time to write a valid yml, but you can test it out immediately, it can be used in any cdk - python, java, etc. devops will understand it easily.