Skip to content

Instantly share code, notes, and snippets.

@dcaponi
Last active May 4, 2020 14:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcaponi/86cba058da31ea3775f6d70c8635b7f3 to your computer and use it in GitHub Desktop.
Save dcaponi/86cba058da31ea3775f6d70c8635b7f3 to your computer and use it in GitHub Desktop.
example hcl file
provider "onelogin" {
client_id = "xxxxxxxxxxxxxxxxxxxx"
client_secret = "xxxxxxxxxxxxxxxxxxxx"
url = "https://api.us.onelogin.com"
}
resource "onelogin_saml_apps" "aws-console"{
connector_id = 50534
name = "AWS Multi Role App"
description = "AWS Multi Role app created via Terraform"
visible = true
parameters {
param_key_name = "saml_username"
user_attribute_mappings = "email"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment