Skip to content

Commit

Permalink
Merge pull request #1 from terraform-modules/update_mssql_ports
Browse files Browse the repository at this point in the history
update mssql ports (add 5023)
  • Loading branch information
badra001 committed Apr 29, 2020
2 parents 6b41fa9 + 4c3c7ce commit abcc779
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions rds-mssql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# v1.4 -- 20200429

* add version.tf
* add port 5023 to rds-mssql
1 change: 1 addition & 0 deletions rds-mssql/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ locals {
name = var.name
ports = [
[ 1433, 1433, "tcp" ]
[ 5023, 5023, "tcp" ]
]
}

Expand Down
5 changes: 5 additions & 0 deletions rds-mssql/version.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
variable "_module_version" {
description = "Module version number"
type = string
default = "1.4"
}

0 comments on commit abcc779

Please sign in to comment.