-
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.
Update provider to not return internal fields except id
- Loading branch information
Nishu Goel
committed
Mar 2, 2024
1 parent
1881322
commit 3d8c6dc
Showing
35 changed files
with
209 additions
and
1,250 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
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 |
---|---|---|
@@ -1,15 +1,10 @@ | ||
# resource "epilot-product_product" "my_product" { | ||
# active = true | ||
# code = "...my_code..." | ||
# description = "...my_description..." | ||
# internal_name = "...my_internal_name..." | ||
# name = "Juan Morar Jr." | ||
# product_downloads = "{ \"see\": \"documentation\" }" | ||
# product_images = "{ \"see\": \"documentation\" }" | ||
# type = "product" | ||
# } | ||
|
||
|
||
# resource "epilot-product_product" "new_product" {} | ||
|
||
resource "epilot-product_price" "new_price" {} | ||
resource "epilot-product_product" "my_product" { | ||
active = true | ||
code = "...my_code..." | ||
description = "...my_description..." | ||
internal_name = "...my_internal_name..." | ||
name = "Juan Morar Jr." | ||
product_downloads = "{ \"see\": \"documentation\" }" | ||
product_images = "{ \"see\": \"documentation\" }" | ||
type = "product" | ||
} |
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
Oops, something went wrong.