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 eae41f4 commit ae2cca8Copy full SHA for ae2cca8
.gitignore
@@ -39,4 +39,10 @@ out/
39
### Custom ###
40
db_dev.mv.db
41
db_dev.trace.db
42
-.env
+.env
43
+
44
+### Terraform ###
45
+/infra/terraform/.terraform
46
+/infra/terraform/.terraform.lock.hcl
47
+/infra/terraform/terraform.tfstate
48
+/infra/terraform/terraform.tfstate.backup
infra/terraform/main.tf
@@ -0,0 +1,22 @@
1
+terraform {
2
+ // aws 라이브러리 불러옴
3
+ required_providers {
4
+ aws = {
5
+ source = "hashicorp/aws"
6
+ }
7
8
+}
9
10
+# 디폴드 리전 설정
11
+provider "aws" {
12
+ region = "ap-northeast-2"
13
14
15
+resource "aws_vpc" "example" {
16
+ cidr_block = "10.0.0.0/16"
17
18
+ tags = {
19
+ Name = "example"
20
21
22
0 commit comments