-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1289 from hashicorp/mead223/0.53.0-release
Prep for 0.53.0 Release
- Loading branch information
Showing
226 changed files
with
6,198 additions
and
4,399 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
layout: "tfe" | ||
page_title: "Terraform Enterprise: tfe_no_code_module" | ||
description: |- | ||
Get information on a no-code module. | ||
--- | ||
|
||
|
||
<!-- Please do not edit this file, it is generated. --> | ||
# Data Source: tfe_registry_provider | ||
|
||
Use this data source to read the details of an existing No-Code-Allowed module. | ||
|
||
## Example Usage | ||
|
||
```hcl | ||
resource "tfe_no_code_module" "foobar" { | ||
organization = tfe_organization.foobar.id | ||
registry_module = tfe_registry_module.foobar.id | ||
} | ||
data "tfe_no_code_module" "foobar" { | ||
id = tfe_no_code_module.foobar.id | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
* `Id` - (Required) ID of the no-code module. | ||
|
||
## Attributes Reference | ||
|
||
* `Id` - ID of the no-code module. | ||
* `Organization` - Organization name that the no-code module belongs to. | ||
* `Namespace` - Namespace name that the no-code module belongs to. | ||
* `RegistryModuleId` - ID of the registry module for the no-code module. | ||
* `VersionPin` - Version number the no-code module is pinned to. | ||
* `Enabled` - Indicates if this no-code module is currently enabled | ||
|
||
<!-- cache-key: cdktf-0.17.0-pre.15 input-575fd9c85b909c532a6abcfecdf6262d4ba6675f544b4a4a3a15b6c519eab693 --> |
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
47 changes: 47 additions & 0 deletions
47
website/docs/cdktf/csharp/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 | ||
|
||
```csharp | ||
using Constructs; | ||
using HashiCorp.Cdktf; | ||
/*Provider bindings are generated by running cdktf get. | ||
See https://cdk.tf/provider-generation for more details.*/ | ||
using Gen.Providers.Tfe; | ||
class MyConvertedCode : TerraformStack | ||
{ | ||
public MyConvertedCode(Construct scope, string name) : base(scope, name) | ||
{ | ||
new DataTfeRegistryGpgKey.DataTfeRegistryGpgKey(this, "example", new DataTfeRegistryGpgKeyConfig { | ||
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.17.0-pre.15 input-7cf721398cc48785bd0ab8f949360d917b2cadf37b1f704b8747ee2c07ced5d4 --> |
48 changes: 48 additions & 0 deletions
48
website/docs/cdktf/csharp/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 | ||
|
||
```csharp | ||
using Constructs; | ||
using HashiCorp.Cdktf; | ||
/*Provider bindings are generated by running cdktf get. | ||
See https://cdk.tf/provider-generation for more details.*/ | ||
using Gen.Providers.Tfe; | ||
class MyConvertedCode : TerraformStack | ||
{ | ||
public MyConvertedCode(Construct scope, string name) : base(scope, name) | ||
{ | ||
new DataTfeRegistryGpgKeys.DataTfeRegistryGpgKeys(this, "all", new DataTfeRegistryGpgKeysConfig { | ||
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. | ||
* `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.17.0-pre.15 input-985032e5d21704bbf9d65466c89a423c9765fcddc79c819677b5b011797a49e7 --> |
73 changes: 73 additions & 0 deletions
73
website/docs/cdktf/csharp/d/registry_provider.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,73 @@ | ||
--- | ||
layout: "tfe" | ||
page_title: "Terraform Enterprise: tfe_registry_provider" | ||
description: |- | ||
Get information on a public or private provider in the private registry. | ||
--- | ||
|
||
|
||
<!-- Please do not edit this file, it is generated. --> | ||
# Data Source: tfe_registry_provider | ||
|
||
Use this data source to get information about a public or private provider in the private registry. | ||
|
||
## Example Usage | ||
|
||
A private provider: | ||
|
||
```csharp | ||
using Constructs; | ||
using HashiCorp.Cdktf; | ||
/*Provider bindings are generated by running cdktf get. | ||
See https://cdk.tf/provider-generation for more details.*/ | ||
using Gen.Providers.Tfe; | ||
class MyConvertedCode : TerraformStack | ||
{ | ||
public MyConvertedCode(Construct scope, string name) : base(scope, name) | ||
{ | ||
new RegistryProvider.RegistryProvider(this, "example", new RegistryProviderConfig { | ||
Name = "my-provider", | ||
Organization = "my-org-name" | ||
}); | ||
} | ||
} | ||
``` | ||
|
||
A public provider: | ||
|
||
```csharp | ||
using Constructs; | ||
using HashiCorp.Cdktf; | ||
/*Provider bindings are generated by running cdktf get. | ||
See https://cdk.tf/provider-generation for more details.*/ | ||
using Gen.Providers.Tfe; | ||
class MyConvertedCode : TerraformStack | ||
{ | ||
public MyConvertedCode(Construct scope, string name) : base(scope, name) | ||
{ | ||
new RegistryProvider.RegistryProvider(this, "example", new RegistryProviderConfig { | ||
Name = "aws", | ||
Namespace = "hashicorp", | ||
Organization = "my-org-name", | ||
RegistryName = "public" | ||
}); | ||
} | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
* `Organization` - (Optional) Name of the organization. If omitted, organization must be defined in the provider config. | ||
* `RegistryName` - (Optional) Whether this is a publicly maintained provider or private. Must be either `Public` or `Private`. Defaults to `Private`. | ||
* `Namespace` - (Optional) The namespace of the provider. Required if `RegistryName` is `Public`, otherwise it can't be configured, and it will be set to same value as the `Organization`. | ||
* `Name` - (Required) Name of the provider. | ||
|
||
## Attributes Reference | ||
|
||
* `Id` - ID of the provider. | ||
* `CreatedAt` - The time when the provider was created. | ||
* `UpdatedAt` - The time when the provider was last updated. | ||
|
||
<!-- cache-key: cdktf-0.17.0-pre.15 input-f9e0af19d1890c9a1f513b4733d64c1b0de8c9da99113cd78d129a1840acbbec --> |
Oops, something went wrong.