Add terraform

This commit is contained in:
2025-01-04 17:55:41 +09:00
parent 4b4d90bada
commit c1597aab10
10 changed files with 268 additions and 0 deletions

19
terraform/variables.tf Normal file
View File

@@ -0,0 +1,19 @@
variable "REPOSITORY_NAME" {
description = "Name of the GitHub repository"
type = string
}
variable "REPOSITORY_OWNER" {
description = "Owner of the GitHub repository"
type = string
}
variable "BASE_DOMAIN" {
description = "Base domain for the site"
type = string
}
variable "ZONE_ID" {
description = "Zone ID of the domain"
type = string
}