Skip to content
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

Make certain arguments optional to allow creation of replicas #136

Merged
merged 14 commits into from
Jun 19, 2022
Prev Previous commit
Next Next commit
description improvements
  • Loading branch information
mihaiplesa committed Jun 7, 2022
commit 35291a5c9dac09dedf5a00399c014a5f7a75bbac
4 changes: 2 additions & 2 deletions examples/complete/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ variable "database_name" {

variable "database_user" {
type = string
description = "Username for the master DB user"
description = "Username for the primary DB user"
}

variable "database_password" {
type = string
description = "Password for the master DB user"
description = "Password for the primary DB user"
}

variable "database_port" {
Expand Down
4 changes: 2 additions & 2 deletions examples/mssql/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ variable "database_name" {

variable "database_user" {
type = string
description = "Username for the master DB user"
description = "Username for the primary DB user"
}

variable "database_password" {
type = string
description = "Password for the master DB user"
description = "Password for the primary DB user"
}

variable "database_port" {
Expand Down