We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ec1988 commit fd51e89Copy full SHA for fd51e89
infra/.gitignore
@@ -0,0 +1,2 @@
1
+.idea
2
+.terraform
infra/main.tf
@@ -0,0 +1,22 @@
+terraform {
+ // 자바의 import 와 비슷함
3
+ // aws 라이브러리 불러옴
4
+ required_providers {
5
+ aws = {
6
+ source = "hashicorp/aws"
7
+ }
8
9
+}
10
+
11
+# Configure the AWS Provider
12
+provider "aws" {
13
+ region = "ap-northeast-2"
14
15
16
+resource "aws_vpc" "example" {
17
+ cidr_block = "10.0.0.0/16"
18
19
+ tags = {
20
+ Name = "example"
21
22
0 commit comments