diff --git a/variables.tf b/variables.tf index 118c5b3..f919804 100644 --- a/variables.tf +++ b/variables.tf @@ -125,4 +125,45 @@ variable "cf_azure_admin_rule_group_id" { description = "Azure Administrators Rule Group ID in Cloudflare" type = string sensitive = true -} \ No newline at end of file +} + +#====================================================== +# OKTA SAML GROUPS +#====================================================== +variable "okta_infra_admin_saml_group_name" { + description = "SAML Group name for InfrastructureAdmin group" + type = string +} + +variable "okta_contractors_saml_group_name" { + description = "SAML Group name for Contractors group" + type = string +} + +variable "okta_sales_eng_saml_group_name" { + description = "SAML Group name for SalesEngineering group" + type = string +} + +variable "okta_sales_saml_group_name" { + description = "SAML Group name for Sales group" + type = string +} + +variable "okta_itadmin_saml_group_name" { + description = "SAML Group name for ITAdmin group" + type = string +} + +#====================================================== +# OKTA USER LOGINS +#====================================================== +variable "okta_bob_user_login" { + description = "User login for bob, in an email format" + type = string +} + +variable "okta_matthieu_user_login" { + description = "User login for matthieu, in an email format" + type = string +}