How to manage Terraform state

Tiếp theo part1 thì chúng ta cần add thêm tag cho EC2 như sau: resource "aws_instance" "example" { ami = "xxxxxx" instance_type = "t2.micro" tags = { Name = "terraform-example" } } Sau đó “apply” để thực hiện thay đổi ``` $ terraform apply [Read More]
Tags: Cloud

How to work with Terraform

Terraform là một trong những công cụ rất mạnh mẽ để bạn tự động hóa việc khởi tạo, quản lý resource trên cloud. Nếu như bạn đã làm quen với AWS và Cloudformation thì Terraform là một công cụ không thể bỏ qua. [Read More]
Tags: Cloud