Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Mar 1, 2021
1 parent 8051d7e commit bdc990b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ No Modules.
| ec2\_assume\_policy\_document | JSON policy document for EC2 instance role (default is sts:AssumeRole for ec2 service) | `string` | `""` | no |
| ec2\_attached\_policies | List of IAM Policy ARNs to attach to this EC2 instance role | `list(string)` | `[]` | no |
| ec2\_role\_name | EC2 instace Role/application name without prefix | `string` | `""` | no |
| enable\_instance\_role | Flag to enable the creation of a partner EC2 instance role with specific policies and optionally a different name | `boolean` | `false` | no |
| enable\_ldap\_creation | Flag to enable/disable LDAP object creation for role group (for SAML only). Also requires LDAP credentials. | `boolean` | `false` | no |
| enable\_instance\_role | Flag to enable the creation of a partner EC2 instance role with specific policies and optionally a different name | `bool` | `false` | no |
| enable\_ldap\_creation | Flag to enable/disable LDAP object creation for role group (for SAML only). Also requires LDAP credentials. | `bool` | `false` | no |
| ldap\_host | LDAP Hostname (default is for eBOCAS) | `string` | `"ldap.e.tco.census.gov"` | no |
| ldap\_password | LDAP password for ldap\_user for writing data into eDirectory or Active Directory | `string` | `""` | no |
| ldap\_port | LDAP port (default is 389 but also using STARTTLS) | `number` | `389` | no |
Expand Down
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ variable "saml_provider_arn" {

variable "enable_ldap_creation" {
description = "Flag to enable/disable LDAP object creation for role group (for SAML only). Also requires LDAP credentials."
type = boolean
type = bool
default = false
}

variable "enable_instance_role" {
description = "Flag to enable the creation of a partner EC2 instance role with specific policies and optionally a different name"
type = boolean
type = bool
default = false
}

Expand Down

0 comments on commit bdc990b

Please sign in to comment.