-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c5464da
commit 1498c4f
Showing
6 changed files
with
426 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
terraform { | ||
required_providers { | ||
infisical = { | ||
# version = <latest version> | ||
source = "hashicorp.com/edu/infisical" | ||
} | ||
} | ||
} | ||
|
||
provider "infisical" { | ||
host = "http://localhost:8080" # Only required if using self hosted instance of Infisical, default is https://app.infisical.com | ||
client_id = "3f6135db-f237-421d-af66-a8f4e80d443b" | ||
client_secret = "d1a9238d9fe9476e545ba92c25ece3866178e468d3b0b8f263af64026ac835bf" | ||
} | ||
|
||
resource "infisical_project" "a-new-project" { | ||
name = "new name123" | ||
slug = "a-new-project-slug" | ||
organization_id = "180870b7-f464-4740-8ffe-9d11c9245ea7" | ||
} | ||
|
||
|
Oops, something went wrong.