-
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.
Add proper providers with auth config for each resource
- Loading branch information
Nishu Goel
committed
Jan 16, 2024
1 parent
9addbdf
commit 4de975d
Showing
4 changed files
with
56 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
terraform { | ||
required_providers { | ||
epilot-product = { | ||
source = "epilot-dev/epilot-product" | ||
version = "0.4.1" | ||
} | ||
} | ||
} | ||
|
||
variable epilot_auth { | ||
type = string | ||
} | ||
|
||
provider "epilot-product" { | ||
# Configuration options | ||
epilot_auth = var.epilot_auth | ||
} |
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,17 @@ | ||
terraform { | ||
required_providers { | ||
epilot-product = { | ||
source = "epilot-dev/epilot-product" | ||
version = "0.4.1" | ||
} | ||
} | ||
} | ||
|
||
variable epilot_auth { | ||
type = string | ||
} | ||
|
||
provider "epilot-product" { | ||
# Configuration options | ||
epilot_auth = var.epilot_auth | ||
} |
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,17 @@ | ||
terraform { | ||
required_providers { | ||
epilot-product = { | ||
source = "epilot-dev/epilot-product" | ||
version = "0.4.1" | ||
} | ||
} | ||
} | ||
|
||
variable epilot_auth { | ||
type = string | ||
} | ||
|
||
provider "epilot-product" { | ||
# Configuration options | ||
epilot_auth = var.epilot_auth | ||
} |