Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
terraform-aws-rds
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Terraform Modules
terraform-aws-rds
Commits
52290d2c
Commit
52290d2c
authored
Dec 20, 2019
by
Sebastian Melchior
Committed by
Anton Babenko
Dec 20, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for ca_cert_identifier option (#174)
parent
cfade373
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
1 deletion
+17
-1
main.tf
main.tf
+2
-0
main.tf
modules/db_instance/main.tf
+2
-0
variables.tf
modules/db_instance/variables.tf
+7
-1
variables.tf
variables.tf
+6
-0
No files found.
main.tf
View file @
52290d2c
...
@@ -85,6 +85,8 @@ module "db_instance" {
...
@@ -85,6 +85,8 @@ module "db_instance" {
iops
=
var
.
iops
iops
=
var
.
iops
publicly_accessible
=
var
.
publicly_accessible
publicly_accessible
=
var
.
publicly_accessible
ca_cert_identifier
=
var
.
ca_cert_identifier
allow_major_version_upgrade
=
var
.
allow_major_version_upgrade
allow_major_version_upgrade
=
var
.
allow_major_version_upgrade
auto_minor_version_upgrade
=
var
.
auto_minor_version_upgrade
auto_minor_version_upgrade
=
var
.
auto_minor_version_upgrade
apply_immediately
=
var
.
apply_immediately
apply_immediately
=
var
.
apply_immediately
...
...
modules/db_instance/main.tf
View file @
52290d2c
...
@@ -89,6 +89,8 @@ resource "aws_db_instance" "this" {
...
@@ -89,6 +89,8 @@ resource "aws_db_instance" "this" {
character_set_name
=
var
.
character_set_name
character_set_name
=
var
.
character_set_name
ca_cert_identifier
=
var
.
ca_cert_identifier
enabled_cloudwatch_logs_exports
=
var
.
enabled_cloudwatch_logs_exports
enabled_cloudwatch_logs_exports
=
var
.
enabled_cloudwatch_logs_exports
deletion_protection
=
var
.
deletion_protection
deletion_protection
=
var
.
deletion_protection
...
...
modules/db_instance/variables.tf
View file @
52290d2c
...
@@ -273,3 +273,9 @@ variable "max_allocated_storage" {
...
@@ -273,3 +273,9 @@ variable "max_allocated_storage" {
type
=
number
type
=
number
default
=
0
default
=
0
}
}
variable
"ca_cert_identifier"
{
description
=
"Specifies the identifier of the CA certificate for the DB instance"
type
=
string
default
=
"rds-ca-2015"
}
variables.tf
View file @
52290d2c
...
@@ -342,3 +342,9 @@ variable "max_allocated_storage" {
...
@@ -342,3 +342,9 @@ variable "max_allocated_storage" {
type
=
number
type
=
number
default
=
0
default
=
0
}
}
variable
"ca_cert_identifier"
{
description
=
"Specifies the identifier of the CA certificate for the DB instance"
type
=
string
default
=
"rds-ca-2015"
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment