-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cdktf: update d/team_access.html.markdown,d/team.html.markdown,d/ssh_…
…key.html.markdown,d/slug.html.markdown,d/saml_settings.html.markdown,d/registry_gpg_keys.html.markdown,d/registry_gpg_key.html.markdown,d/project.html.markdown,d/policy_set.html.markdown,d/outputs.html.markdown
- Loading branch information
1 parent
17b9ebc
commit 7d45da9
Showing
4 changed files
with
196 additions
and
0 deletions.
There are no files selected for viewing
47 changes: 47 additions & 0 deletions
47
website/docs/cdktf/python/d/registry_gpg_key.html.markdown
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,47 @@ | ||
--- | ||
layout: "tfe" | ||
page_title: "Terraform Enterprise: tfe_registry_gpg_key" | ||
description: |- | ||
Get information on a private registry GPG key. | ||
--- | ||
|
||
|
||
<!-- Please do not edit this file, it is generated. --> | ||
# Data Source: tfe_registry_gpg_key | ||
|
||
Use this data source to get information about a private registry GPG key. | ||
|
||
## Example Usage | ||
|
||
```python | ||
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug | ||
from constructs import Construct | ||
from cdktf import TerraformStack | ||
# | ||
# Provider bindings are generated by running `cdktf get`. | ||
# See https://cdk.tf/provider-generation for more details. | ||
# | ||
from imports.tfe. import DataTfeRegistryGpgKey | ||
class MyConvertedCode(TerraformStack): | ||
def __init__(self, scope, name): | ||
super().__init__(scope, name) | ||
DataTfeRegistryGpgKey(self, "example", | ||
id="13DFECCA3B58CE4A", | ||
organization="my-org-name" | ||
) | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
* `id` - (Required) ID of the GPG key. | ||
* `organization` - (Optional) Name of the organization. If omitted, organization must be defined in the provider config. | ||
|
||
## Attributes Reference | ||
|
||
* `ascii_armor` - ASCII-armored representation of the GPG key. | ||
* `created_at` - The time when the GPG key was created. | ||
* `updated_at` - The time when the GPG key was last updated. | ||
|
||
<!-- cache-key: cdktf-0.19.0 input-7cf721398cc48785bd0ab8f949360d917b2cadf37b1f704b8747ee2c07ced5d4 --> |
48 changes: 48 additions & 0 deletions
48
website/docs/cdktf/python/d/registry_gpg_keys.html.markdown
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,48 @@ | ||
--- | ||
layout: "tfe" | ||
page_title: "Terraform Enterprise: tfe_registry_gpg_keys" | ||
description: |- | ||
Get information on private registry GPG keys of an organization. | ||
--- | ||
|
||
|
||
<!-- Please do not edit this file, it is generated. --> | ||
# Data Source: tfe_registry_gpg_key | ||
|
||
Use this data source to get information about all private registry GPG keys of an organization. | ||
|
||
## Example Usage | ||
|
||
```python | ||
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug | ||
from constructs import Construct | ||
from cdktf import TerraformStack | ||
# | ||
# Provider bindings are generated by running `cdktf get`. | ||
# See https://cdk.tf/provider-generation for more details. | ||
# | ||
from imports.tfe. import DataTfeRegistryGpgKeys | ||
class MyConvertedCode(TerraformStack): | ||
def __init__(self, scope, name): | ||
super().__init__(scope, name) | ||
DataTfeRegistryGpgKeys(self, "all", | ||
organization="my-org-name" | ||
) | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
* `organization` - (Optional) Name of the organization. If omitted, organization must be defined in the provider config. | ||
|
||
## Attributes Reference | ||
|
||
* `keys` - List of GPG keys in the organization. Each element contains the following attributes: | ||
* `id` - ID of the GPG key. | ||
* `organization` - Name of the organization. | ||
* `ascii_armor` - ASCII-armored representation of the GPG key. | ||
* `created_at` - The time when the GPG key was created. | ||
* `updated_at` - The time when the GPG key was last updated. | ||
|
||
<!-- cache-key: cdktf-0.19.0 input-985032e5d21704bbf9d65466c89a423c9765fcddc79c819677b5b011797a49e7 --> |
50 changes: 50 additions & 0 deletions
50
website/docs/cdktf/typescript/d/registry_gpg_key.html.markdown
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,50 @@ | ||
--- | ||
layout: "tfe" | ||
page_title: "Terraform Enterprise: tfe_registry_gpg_key" | ||
description: |- | ||
Get information on a private registry GPG key. | ||
--- | ||
|
||
|
||
<!-- Please do not edit this file, it is generated. --> | ||
# Data Source: tfe_registry_gpg_key | ||
|
||
Use this data source to get information about a private registry GPG key. | ||
|
||
## Example Usage | ||
|
||
```typescript | ||
// DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug | ||
import { Construct } from "constructs"; | ||
import { TerraformStack } from "cdktf"; | ||
/* | ||
* Provider bindings are generated by running `cdktf get`. | ||
* See https://cdk.tf/provider-generation for more details. | ||
*/ | ||
import { DataTfeRegistryGpgKey } from "./.gen/providers/tfe/"; | ||
class MyConvertedCode extends TerraformStack { | ||
constructor(scope: Construct, name: string) { | ||
super(scope, name); | ||
new DataTfeRegistryGpgKey(this, "example", { | ||
id: "13DFECCA3B58CE4A", | ||
organization: "my-org-name", | ||
}); | ||
} | ||
} | ||
|
||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
* `id` - (Required) ID of the GPG key. | ||
* `organization` - (Optional) Name of the organization. If omitted, organization must be defined in the provider config. | ||
|
||
## Attributes Reference | ||
|
||
* `asciiArmor` - ASCII-armored representation of the GPG key. | ||
* `createdAt` - The time when the GPG key was created. | ||
* `updatedAt` - The time when the GPG key was last updated. | ||
|
||
<!-- cache-key: cdktf-0.19.0 input-7cf721398cc48785bd0ab8f949360d917b2cadf37b1f704b8747ee2c07ced5d4 --> |
51 changes: 51 additions & 0 deletions
51
website/docs/cdktf/typescript/d/registry_gpg_keys.html.markdown
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,51 @@ | ||
--- | ||
layout: "tfe" | ||
page_title: "Terraform Enterprise: tfe_registry_gpg_keys" | ||
description: |- | ||
Get information on private registry GPG keys of an organization. | ||
--- | ||
|
||
|
||
<!-- Please do not edit this file, it is generated. --> | ||
# Data Source: tfe_registry_gpg_key | ||
|
||
Use this data source to get information about all private registry GPG keys of an organization. | ||
|
||
## Example Usage | ||
|
||
```typescript | ||
// DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug | ||
import { Construct } from "constructs"; | ||
import { TerraformStack } from "cdktf"; | ||
/* | ||
* Provider bindings are generated by running `cdktf get`. | ||
* See https://cdk.tf/provider-generation for more details. | ||
*/ | ||
import { DataTfeRegistryGpgKeys } from "./.gen/providers/tfe/"; | ||
class MyConvertedCode extends TerraformStack { | ||
constructor(scope: Construct, name: string) { | ||
super(scope, name); | ||
new DataTfeRegistryGpgKeys(this, "all", { | ||
organization: "my-org-name", | ||
}); | ||
} | ||
} | ||
|
||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
* `organization` - (Optional) Name of the organization. If omitted, organization must be defined in the provider config. | ||
|
||
## Attributes Reference | ||
|
||
* `keys` - List of GPG keys in the organization. Each element contains the following attributes: | ||
* `id` - ID of the GPG key. | ||
* `organization` - Name of the organization. | ||
* `ascii_armor` - ASCII-armored representation of the GPG key. | ||
* `created_at` - The time when the GPG key was created. | ||
* `updated_at` - The time when the GPG key was last updated. | ||
|
||
<!-- cache-key: cdktf-0.19.0 input-985032e5d21704bbf9d65466c89a423c9765fcddc79c819677b5b011797a49e7 --> |