Skip to content
This repository has been archived by the owner on Mar 8, 2022. It is now read-only.

Commit

Permalink
Add organization example
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Kalyvitis committed Nov 5, 2021
1 parent 0e22a7e commit 0fe4bc3
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions example/organization/main.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
terraform {
required_providers {
auth0 = {
source = "alexkappa/auth0"
version = "0.22.0"
}
}
}

provider "auth0" {}

resource "auth0_organization" "organization" {
name = "alex-inc"
display_name = "Alex Inc."
branding {
logo_url = "https://alexkappa.com/assets/icons/icon.png"
colors = {
primary = "#f2f2f2"
page_background = "#e1e1e1"
}
}
connections {
connection_id = "con_X7iCWk8xB076gRi2"
}
}

output "auth0_organization_id" {
value = auth0_organization.organization.id
}

0 comments on commit 0fe4bc3

Please sign in to comment.