-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #85 from cloud-barista/feature/fix-operate-service
Fix: operate Service
- Loading branch information
Showing
22 changed files
with
1,694 additions
and
95 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 0 additions & 40 deletions
40
data/var/run/data-manager/template/example/AWS/BUILDER/modules/mysql/variables.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
|
||
resource "aws_s3_bucket" "bucket" { | ||
bucket = var.bucket_name | ||
|
||
force_destroy = true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 2 additions & 6 deletions
8
data/var/run/data-manager/template/example/GCP/BUILDER/modules/firestore/variables.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,15 @@ | ||
# 공통 변수 설정 | ||
# module | ||
variable "project_id" { | ||
description = "GCP 프로젝트 ID" | ||
type = string | ||
default = "spatial-conduit-399006" | ||
} | ||
|
||
variable "region" { | ||
description = "GCP 리전" | ||
type = string | ||
default = "asia-east1" | ||
} | ||
|
||
# 로컬 변수 설정 | ||
variable "dbName" { | ||
variable "nrdbName" { | ||
description = "DB 이름" | ||
type = string | ||
default = "mc-data-manager" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 7 additions & 7 deletions
14
data/var/run/data-manager/template/example/GCP/BUILDER/modules/mysql/variables.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
# 공통 변수 설정 | ||
# common | ||
|
||
variable "project_id" { | ||
description = "GCP 프로젝트 ID" | ||
type = string | ||
default = "spatial-conduit-399006" | ||
} | ||
|
||
variable "region" { | ||
description = "GCP 리전" | ||
type = string | ||
default = "asia-east1" | ||
} | ||
|
||
|
||
# 로컬 변수 설정 | ||
# local | ||
variable "dbName" { | ||
description = "DB 이름" | ||
type = string | ||
default = "mc-data-manager" | ||
} | ||
|
||
|
||
variable "userName" { | ||
description = "DB 유저" | ||
type = string | ||
default = "mc-data-manager" | ||
} | ||
|
||
variable "password" { | ||
description = "DB PW" | ||
type = string | ||
default = "mcdatamanager" | ||
} | ||
|
||
variable "cidr_range" { | ||
description = "DB PW" | ||
type = string | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,5 @@ resource "google_storage_bucket" "data_storage" { | |
versioning { | ||
enabled = true | ||
} | ||
force_destroy = true | ||
} |
8 changes: 2 additions & 6 deletions
8
data/var/run/data-manager/template/example/GCP/BUILDER/modules/storage/variables.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,16 @@ | ||
# 공통 변수 설정 | ||
# common | ||
variable "project_id" { | ||
description = "GCP 프로젝트 ID" | ||
type = string | ||
default = "spatial-conduit-399006" | ||
} | ||
|
||
variable "region" { | ||
description = "GCP 리전" | ||
type = string | ||
default = "asia-east1" | ||
} | ||
|
||
# 로컬 변수 설정 | ||
|
||
# local | ||
variable "bucketName" { | ||
description = "버킷 명" | ||
type = string | ||
default = "mc-data-manager" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.