-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: resolved linting issues and generated docs
- Loading branch information
Showing
3 changed files
with
90 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "infisical_secret_tag Data Source - terraform-provider-infisical" | ||
subcategory: "" | ||
description: |- | ||
Interact with Infisical secretTag secret tag. | ||
--- | ||
|
||
# infisical_secret_tag (Data Source) | ||
|
||
Interact with Infisical secretTag secret tag. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
terraform { | ||
required_providers { | ||
infisical = { | ||
# version = <latest version> | ||
source = "infisical/infisical" | ||
} | ||
} | ||
} | ||
provider "infisical" { | ||
host = "https://app.infisical.com" # Only required if using self hosted instance of Infisical, default is https://app.infisical.com | ||
client_id = "<>" | ||
client_secret = "<>" | ||
} | ||
data "infisical_secret_tag" "terraform" { | ||
slug = "terraform" | ||
project_id = "PROJECT_ID" | ||
} | ||
output "secret-tag" { | ||
value = data.infisical_secret_tag.terraform | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `project_id` (String) The secretTag ID of the tag to fetch | ||
- `slug` (String) The slug of the tag to fetch | ||
|
||
### Read-Only | ||
|
||
- `color` (String) The color of the secret tag | ||
- `id` (String) The ID of the secret tag | ||
- `name` (String) The name of the secret tag |
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,27 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "infisical_secret_tag Resource - terraform-provider-infisical" | ||
subcategory: "" | ||
description: |- | ||
Create secret tag & save to Infisical. | ||
--- | ||
|
||
# infisical_secret_tag (Resource) | ||
|
||
Create secret tag & save to Infisical. | ||
|
||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `color` (String) Color code for the tag. | ||
- `name` (String) The name for the new tag | ||
- `project_id` (String) The ID of the project to create tag | ||
- `slug` (String) The slug for the new tag | ||
|
||
### Read-Only | ||
|
||
- `id` (String) The ID of the role |