Skip to content

Commit f5a62fd

Browse files
author
dpf
committed
Fix variable documentation
1 parent 405a66c commit f5a62fd

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,14 +113,11 @@ For now the only authentication option is 'RBAC'. When enabling this, this modul
113113
| rbac\_admin\_lastname | RBAC Lastname (only when airflow\_authentication = 'rbac') | `string` | `"airflow"` | no |
114114
| rbac\_admin\_password | RBAC Password (only when airflow\_authentication = 'rbac') | `string` | `"admin"` | no |
115115
| rbac\_admin\_username | RBAC Username (only when airflow\_authentication = 'rbac') | `string` | `"admin"` | no |
116-
| rds\_allocated\_storage | The allocated storage for the rds db in gibibytes | `number` | `20` | no |
117116
| rds\_availability\_zone | Availability zone for the rds instance | `string` | `"eu-west-1a"` | no |
118117
| rds\_deletion\_protection | Deletion protection for the rds instance | `bool` | `false` | no |
119-
| rds\_engine | The database engine to use. For supported values, see the Engine parameter in [API action CreateDBInstance](https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBInstance.html) | `string` | `"postgres"` | no |
120118
| rds\_instance\_class | The class of instance you want to give to your rds db | `string` | `"db.t2.micro"` | no |
121119
| rds\_password | Password of rds | `string` | `""` | no |
122120
| rds\_skip\_final\_snapshot | Whether or not to skip the final snapshot before deleting (mainly for tests) | `bool` | `false` | no |
123-
| rds\_storage\_type | One of `"standard"` (magnetic), `"gp2"` (general purpose SSD), or `"io1"` (provisioned IOPS SSD) | `string` | `"standard"` | no |
124121
| rds\_username | Username of rds | `string` | `"airflow"` | no |
125122
| region | The region to deploy your solution to | `string` | `"eu-west-1"` | no |
126123
| resource\_prefix | A prefix for the create resources, example your company name (be aware of the resource name length) | `string` | n/a | yes |

variables.tf

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,16 +215,15 @@ variable "rds_allocated_storage" {
215215
variable "rds_storage_type" {
216216
type = string
217217
description = <<EOT
218-
One of "standard" (magnetic), "gp2" (general purpose SSD), or "io1" (provisioned IOPS SSD)
218+
One of `"standard"` (magnetic), `"gp2"` (general purpose SSD), or `"io1"` (provisioned IOPS SSD)
219219
EOT
220220
default = "standard"
221221
}
222222

223223
variable "rds_engine" {
224224
type = string
225225
description = <<EOT
226-
The database engine to use. For supported values, see the Engine parameter in
227-
[API action CreateDBInstance](https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBInstance.html)
226+
The database engine to use. For supported values, see the Engine parameter in [API action CreateDBInstance](https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBInstance.html)
228227
EOT
229228
default = "postgres"
230229
}

0 commit comments

Comments
 (0)