From bdc990b2cea1aee406cf50822d69a03465a19249 Mon Sep 17 00:00:00 2001 From: badra001 Date: Mon, 1 Mar 2021 13:19:41 -0500 Subject: [PATCH] fix --- README.md | 4 ++-- variables.tf | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6ac24fe..8f2a71e 100644 --- a/README.md +++ b/README.md @@ -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 | diff --git a/variables.tf b/variables.tf index 5f5dae8..7f0c5c1 100644 --- a/variables.tf +++ b/variables.tf @@ -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 }