Skip to content

Commit

Permalink
remove unneeded variables from copy
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Apr 1, 2021
1 parent a4250fd commit bdaf842
Showing 1 changed file with 0 additions and 52 deletions.
52 changes: 0 additions & 52 deletions ldap-ou-create/variables.tf
Original file line number Diff line number Diff line change
@@ -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
#---
Expand Down Expand Up @@ -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 = []
## }
##

0 comments on commit bdaf842

Please sign in to comment.