728x90 [Terraform]2 Terraform 자습서 2부: Windows EC2 및 RDP 생성 ## 키페어 생성 ## 테라폼 양식 확인 provider "aws" { access_key = "ACCESS_KEY_HERE" secret_key = "SECRET_KEY_HERE" region = "us-east-1" } resource "aws_instance" "example" { ami = "ami-066663db63b3aa675" instance_type = "t2.micro" key_name = "terraform-key" security_groups = ["${aws_security_group.allow_rdp.name}"] } resource "aws_security_group" "allow_rdp" { name = "allow_rdp" description = "Allow rdp traf.. 2023. 1. 12. Terraform: AWS에서 EC2 프로비저닝 What is Terraform? Terraform is a tool made by Hashicorp for building, changing, and versioning infrastructure safely and efficiently. Terraform can manage existing and popular service providers ( aws, azure, Google cloud) as well as custom in-house solutions. You can compare Terraform to Cloudformation . They are simililar but at the same time have differences. Steps to provision Download the t.. 2023. 1. 6. 이전 1 다음 728x90