🎉 Smithery is now a part of Arcade.dev! Read more in our announcement here
Cloud migration strategies for AWS, GCP, and Azure. Use for lift-and-shift, replatforming, and cloud-native architecture design.
# AWS EC2 Instance resource "aws_instance" "web" { ami = "ami-0c55b159cbfafe1f0" instance_type = "t3.micro" tags = { Name = "web-server" Environment = "production" } } # S3 Bucket resource "aws_s3_bucket" "assets" { bucket = "my-app-assets" }