Skip to content

Commit

Permalink
🔧 Add required terraform provider with s3 backend
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonBirchall committed Jan 3, 2024
1 parent dd1702b commit 51729f5
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions terraform/auth0/operations-engineering-test/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
provider "auth0" {
domain = "<domain>"
client_id = "<client-id>"
client_secret = "<client-secret>"
debug = "<debug>"
terraform {
backend "s3" {
bucket = "cloud-platform-7a8908cb6aea78a104f6ff554c4db90b"
region = "eu-west-2"
}
required_providers {
aws = {
source = "hashicorp/aws"
version = "5.31.0"
}
auth0 = {
source = "auth0/auth0"
version = "1.1.1"
}
}
required_version = "~> 1.6"
}

0 comments on commit 51729f5

Please sign in to comment.