diff --git a/README.md b/README.md index c34d2f7..a6f3472 100644 --- a/README.md +++ b/README.md @@ -57,9 +57,9 @@ No modules. | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| | [additional\_policies](#input\_additional\_policies) | ARNs of additional IAM policies to add to created group | `list(string)` | `[]` | no | -| [contact](#input\_contact) | Census username contact | `string` | `""` | no | +| [contact](#input\_contact) | Census username contact | `string` | `"rozar001"` | no | | [create\_access\_keys](#input\_create\_access\_keys) | Set to 1 or true to create access keys | `bool` | `false` | no | -| [email\_addresses](#input\_email\_addresses) | Security Audit IAM Email Contact List(s) | `list(string)` |
[
"ois.compliance.scanning.group@census.gov"
]
| no | +| [email\_addresses](#input\_email\_addresses) | Security Audit IAM Email Contact List(s) | `list(string)` |
[
"oiscybersecurityengineering@uscensus.onmicrosoft.com"
]
| no | | [group](#input\_group) | Security Audit IAM group name | `string` | `"g-inf-security-audit"` | no | | [pgp\_key](#input\_pgp\_key) | PGP key used to encrypt access key | `string` | `null` | no | | [policy](#input\_policy) | Security Audit IAM Policy name | `string` | `"p-inf-security-audit"` | no | diff --git a/variables.tf b/variables.tf index 9e0f303..ec92a41 100644 --- a/variables.tf +++ b/variables.tf @@ -13,7 +13,7 @@ variable "users" { variable "email_addresses" { description = "Security Audit IAM Email Contact List(s)" type = list(string) - default = ["ois.compliance.scanning.group@census.gov"] + default = ["oiscybersecurityengineering@uscensus.onmicrosoft.com"] } variable "policy" { @@ -39,7 +39,7 @@ variable "pgp_key" { variable "contact" { description = "Census username contact" type = string - default = "" + default = "rozar001" } variable "reference" {