terraform script add

This commit is contained in:
ByeonJungHun
2023-10-19 16:35:47 +09:00
commit 65f305d107
947 changed files with 81629 additions and 0 deletions

17
terraform/ncloud.tf Normal file
View File

@@ -0,0 +1,17 @@
terraform {
required_providers {
ncloud = {
source = "NaverCloudPlatform/ncloud"
}
}
required_version = ">= 0.13"
}
// Configure the ncloud provider
provider "ncloud" {
access_key = var.access_key
secret_key = var.secret_key
region = var.region
site = "public"
support_vpc = true
}