-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from terraform-modules/update-ansible
add host to ansible list, change to use dns lookup
- Loading branch information
Showing
5 changed files
with
33 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,18 +1,24 @@ | ||
| # v1.0 -- 20200731 | ||
| # Version 1.x | ||
|
|
||
| * v1.0 -- 20200731 | ||
| * create from running security group it-windows-base for use throughout | ||
|
|
||
| # v1.1 -- 20210119 | ||
| * v1.1 -- 20210119 | ||
| * add EnCase source 148.129.71.121 to 4445/tcp (ticket INC000002587282) | ||
| * add Riverbed Transaction Agent (formerly appcapture) 172.24.100.107 to 27401/tcp | ||
|
|
||
| # v1.2.0 -- 20210226 | ||
| * v1.2.0 -- 20210226 | ||
| * add HPSA and HPOM | ||
| * ticket INC000002652291 | ||
|
|
||
| # v1.2.1 -- 20210528 | ||
| * v1.2.1 -- 20210528 | ||
| * remove HPSA and HPOM | ||
| * ticket INC000002703111 | ||
|
|
||
| # v1.2.2 -- 20220203 | ||
| * v1.2.2 -- 20220203 | ||
| * Added 135 and 1024-65535/tcp to it-windows-base to allow discovery from csvdsnmidw001i.csp1.ead.census.gov, csvdsnmidw002i.csp1.ead.census.gov. | ||
| * ticket INC000002819140 | ||
|
|
||
| * v1.2.3 -- 20220-02-11 | ||
| - added host automationcontroller.compute.csp1.census.gov to ansible list | ||
| - moved ansible list to dns-lookup module |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| module "ansible_servers" { | ||
| source = "git@github.e.it.census.gov:terraform-modules/dns-lookup.git" | ||
|
|
||
| hosts = [ | ||
| "app28.csvd.census.gov", | ||
| "automationcontroller.compute.csp1.census.gov", | ||
| ] | ||
| use_cidr_format = true | ||
| } | ||
|
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| locals { | ||
| _module_version = "1.2.2" | ||
| _module_version = "1.2.3" | ||
| } |