diff --git a/ldap-ou-create/variables.tf b/ldap-ou-create/variables.tf index 144aab7..4eb8f14 100644 --- a/ldap-ou-create/variables.tf +++ b/ldap-ou-create/variables.tf @@ -1,32 +1,9 @@ -variable "role_name" { - description = "Role/application name without prefix" - type = string -} - -variable "saml_provider_arn" { - description = "ARN of SAML Provider" - type = string - default = "" -} - variable "enable_ldap_creation" { description = "Flag to enable/disable LDAP object creation for role group (for SAML only). Also requires LDAP credentials." type = bool default = false } -variable "assume_policy_document" { - description = "JSON policy document for role to assume (i.e., the SAML assume document)" - type = string - default = "" -} - -variable "attached_policies" { - description = "List of IAM Policy ARNs to attach to this role" - type = list(string) - default = [] -} - #--- # ldap #--- @@ -59,32 +36,3 @@ variable "component_tags" { type = map(map(string)) default = { "role" = {}, "policy" = {} } } - - -## #--- -## # instance role -## #--- -## variable "ec2_role_name" { -## description = "EC2 instace Role/application name without prefix" -## type = string -## default = "" -## } -## -## 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 = bool -## default = false -## } -## -## variable "ec2_assume_policy_document" { -## description = "JSON policy document for EC2 instance role (default is sts:AssumeRole for ec2 service)" -## type = string -## default = "" -## } -## -## variable "ec2_attached_policies" { -## description = "List of IAM Policy ARNs to attach to this EC2 instance role" -## type = list(string) -## default = [] -## } -##