-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: configure Inifiscal provider and secrets and use for Cloudflare…
… R2 Container Registry
- Loading branch information
Showing
54 changed files
with
6,131 additions
and
79 deletions.
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
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 |
---|---|---|
|
@@ -4,7 +4,9 @@ | |
"deno", | ||
"dotenv", | ||
"eearomatics", | ||
"Infisical", | ||
"redpanda", | ||
"tailscale", | ||
"terragrunt", | ||
"torinreine" | ||
], | ||
|
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,42 @@ | ||
resource "infisical_project" "eearomatics" { | ||
name = "Ethereal Elegance Aromatics" | ||
slug = "eearomatics" | ||
} | ||
|
||
resource "infisical_project_user" "admin" { | ||
project_id = infisical_project.eearomatics.id | ||
username = "[email protected]" | ||
roles = [ | ||
{ | ||
role_slug = "admin" | ||
} | ||
] | ||
} | ||
|
||
resource "infisical_project_user" "github-actions" { | ||
project_id = infisical_project.eearomatics.id | ||
username = "[email protected]" | ||
roles = [ | ||
{ | ||
role_slug = "member" | ||
} | ||
] | ||
} | ||
|
||
### NOTE: Automatically generated in new projects | ||
# resource "infisical_project_environment" "prod" { | ||
# name = "Production" | ||
# project_id = infisical_project.eearomatics.id | ||
# slug = "prod" | ||
# } | ||
# resource "infisical_project_environment" "dev" { | ||
# name = "Development" | ||
# project_id = infisical_project.eearomatics.id | ||
# slug = "dev" | ||
# } | ||
### NOTE: Generated but MANUALLY DELETED | ||
# resource "infisical_project_environment" "staging" { | ||
# name = "Staging" | ||
# project_id = infisical_project.eearomatics.id | ||
# slug = "staging" | ||
# } |
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,2 @@ | ||
# NOTE: There is no resource for fly.io integration. | ||
# This must be MANUALLY configured. |
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,4 @@ | ||
provider "infisical" { | ||
client_id = var.infisical_client_id | ||
client_secret = var.infisical_client_secret | ||
} |
Oops, something went wrong.