Skip to content

Release 1.1.3 #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions modules/db-backup-restore/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -94,21 +94,17 @@ variable "postgresdb_backup_config" {
type = map(string)
default = {
bucket_uri = ""
s3_bucket_region = ""
cron_for_full_backup = ""
postgres_database_name = ""
# db_endpoint=""

}
description = "configuration options for MySQL database backups. It includes properties such as the S3 bucket URI, the S3 bucket region, and the cron expression for full backups."
description = "configuration options for MySQL database backups. It includes properties such as the S3 bucket URI, and the cron expression for full backups."
}

variable "postgresdb_restore_config" {
type = any
default = {
bucket_uri = ""
file_name = ""
# s3_bucket_region = ""
DB_NAME = ""
backup_file_name = ""
}
description = "Configuration options for restoring dump to the MySQL database."
Expand Down
6 changes: 2 additions & 4 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -347,20 +347,18 @@ variable "postgresdb_backup_config" {
type = map(string)
default = {
bucket_uri = ""
# s3_bucket_region = ""
cron_for_full_backup = ""
postgres_database_name = ""
# db_endpoint=""

}
description = "configuration options for MySQL database backups. It includes properties such as the S3 bucket URI, the S3 bucket region, and the cron expression for full backups."
description = "configuration options for MySQL database backups. It includes properties such as the S3 bucket URI, and the cron expression for full backups."
}

variable "postgresdb_restore_config" {
type = any
default = {
bucket_uri = ""
file_name = ""
# s3_bucket_region = ""
}
description = "Configuration options for restoring dump to the MySQL database."
}
Expand Down