Skip to content

Commit a068f25

Browse files
committed
cdktf: update d/workspace_run_task.html.markdown,d/workspace_ids.html.markdown,d/workspace.html.markdown,d/variables.html.markdown,d/variable_set.html.markdown,d/teams.html.markdown,d/team_project_access.html.markdown,d/team_access.html.markdown,d/team.html.markdown,d/ssh_key.html.markdown
1 parent e724169 commit a068f25

20 files changed

+131
-38
lines changed

website/docs/cdktf/python/d/ssh_key.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Use this data source to get information about a SSH key.
1414
## Example Usage
1515

1616
```python
17-
# Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
17+
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
1818
from constructs import Construct
1919
from cdktf import TerraformStack
2020
#
@@ -44,4 +44,4 @@ In addition to all arguments above, the following attributes are exported:
4444

4545
* `id` - The ID of the SSH key.
4646

47-
<!-- cache-key: cdktf-0.17.1 input-806b3725b385ea145f9913c0e0d9cd7b045ae9faf7bb22bbddfa40eda1fb10e3 -->
47+
<!-- cache-key: cdktf-0.18.0 input-806b3725b385ea145f9913c0e0d9cd7b045ae9faf7bb22bbddfa40eda1fb10e3 -->

website/docs/cdktf/python/d/team.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Use this data source to get information about a team.
1414
## Example Usage
1515

1616
```python
17-
# Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
17+
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
1818
from constructs import Construct
1919
from cdktf import TerraformStack
2020
#
@@ -45,4 +45,4 @@ In addition to all arguments above, the following attributes are exported:
4545
* `id` - The ID of the team.
4646
* `sso_team_id` - (Optional) The [SSO Team ID](https://developer.hashicorp.com/terraform/cloud-docs/users-teams-organizations/single-sign-on#team-names-and-sso-team-ids) of the team, if it has been defined
4747

48-
<!-- cache-key: cdktf-0.17.1 input-d231d33c8a4a4e5d2ef8d59dddd50d6c6faa1cb5310de9b973f9095ca67523a9 -->
48+
<!-- cache-key: cdktf-0.18.0 input-d231d33c8a4a4e5d2ef8d59dddd50d6c6faa1cb5310de9b973f9095ca67523a9 -->

website/docs/cdktf/python/d/team_access.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Use this data source to get information about team permissions for a workspace.
1414
## Example Usage
1515

1616
```python
17-
# Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
17+
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
1818
from constructs import Construct
1919
from cdktf import TerraformStack
2020
#
@@ -55,4 +55,4 @@ The `permissions` block contains:
5555
* `workspace_locking` - Whether permission is granted to manually lock the workspace or not.
5656
* `run_tasks` - Boolean determining whether or not to grant the team permission to manage workspace run tasks.
5757

58-
<!-- cache-key: cdktf-0.17.1 input-95b20b8ad069cffffc1863d16cd9001f0074da34b788353d4b343912d7784d80 -->
58+
<!-- cache-key: cdktf-0.18.0 input-95b20b8ad069cffffc1863d16cd9001f0074da34b788353d4b343912d7784d80 -->

website/docs/cdktf/python/d/team_project_access.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Use this data source to get information about team permissions for a project.
1414
## Example Usage
1515

1616
```python
17-
# Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
17+
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
1818
from constructs import Construct
1919
from cdktf import TerraformStack
2020
#
@@ -45,4 +45,4 @@ In addition to all arguments above, the following attributes are exported:
4545
* `id` The team project access ID.
4646
* `access` - The type of access granted to the team on the project.
4747

48-
<!-- cache-key: cdktf-0.17.1 input-204103613e94c6b9eafe1ca3f90afd99a5659e7479ad472937135a7066629cf3 -->
48+
<!-- cache-key: cdktf-0.18.0 input-204103613e94c6b9eafe1ca3f90afd99a5659e7479ad472937135a7066629cf3 -->
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
---
2+
layout: "tfe"
3+
page_title: "Terraform Enterprise: tfe_teams"
4+
description: |-
5+
Get information on Teams.
6+
---
7+
8+
9+
<!-- Please do not edit this file, it is generated. -->
10+
# Data Source: tfe_teams
11+
12+
Use this data source to get a list of Teams in an Organization and a map of their IDs. The Teams returned may be a subset of all teams in an Organization based on the permissions of the API token.
13+
14+
## Example Usage
15+
16+
```python
17+
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
18+
from constructs import Construct
19+
from cdktf import TerraformStack
20+
#
21+
# Provider bindings are generated by running `cdktf get`.
22+
# See https://cdk.tf/provider-generation for more details.
23+
#
24+
from imports.tfe. import DataTfeTeams
25+
class MyConvertedCode(TerraformStack):
26+
def __init__(self, scope, name):
27+
super().__init__(scope, name)
28+
DataTfeTeams(self, "foo",
29+
organization="my-org-name"
30+
)
31+
```
32+
33+
## Argument Reference
34+
35+
The following arguments are supported:
36+
37+
* `organization` - (Optional) Name of the organization.
38+
39+
## Attributes Reference
40+
41+
In addition to all arguments above, the following attributes are exported:
42+
* `id` - Name of the organization.
43+
* `names` - A list of team names in an organization.
44+
* `ids` - A map of team names in an organization and their IDs.
45+
<!-- cache-key: cdktf-0.18.0 input-cf3ee1827f2be48f369b644c694e42391fe00d2d4bd827ba913b0bf211d958c0 -->

website/docs/cdktf/python/d/variable_set.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This data source is used to retrieve a named variable set
1616
For workspace variables:
1717

1818
```python
19-
# Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
19+
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
2020
from constructs import Construct
2121
from cdktf import TerraformStack
2222
#
@@ -51,4 +51,4 @@ The following arguments are supported:
5151
* `variable_ids` - IDs of the variables attached to the variable set.
5252
* `project_ids` - IDs of the projects that use the variable set.
5353

54-
<!-- cache-key: cdktf-0.17.1 input-ae45fb346c802a01a9f7b3651d998c5c2a99783e046d2e156817923efbbe7dc3 -->
54+
<!-- cache-key: cdktf-0.18.0 input-ae45fb346c802a01a9f7b3651d998c5c2a99783e046d2e156817923efbbe7dc3 -->

website/docs/cdktf/python/d/variables.html.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This data source is used to retrieve all variables defined in a specified worksp
1616
For workspace variables:
1717

1818
```python
19-
# Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
19+
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
2020
from constructs import Construct
2121
from cdktf import Token, TerraformStack
2222
#
@@ -42,7 +42,7 @@ class MyConvertedCode(TerraformStack):
4242
For variable set variables:
4343

4444
```python
45-
# Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
45+
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
4646
from constructs import Construct
4747
from cdktf import Token, TerraformStack
4848
#
@@ -87,4 +87,4 @@ The `variables, terraform and env` blocks contains:
8787
* `sensitive` - If the variable is marked as sensitive or not
8888
* `hcl` - If the variable is marked as HCL or not
8989

90-
<!-- cache-key: cdktf-0.17.1 input-635190fbcaed3640f0f12f181a3eae6abefebcbcad7f5806bfb392bb4097eaef -->
90+
<!-- cache-key: cdktf-0.18.0 input-635190fbcaed3640f0f12f181a3eae6abefebcbcad7f5806bfb392bb4097eaef -->

website/docs/cdktf/python/d/workspace.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Use this data source to get information about a workspace.
1616
## Example Usage
1717

1818
```python
19-
# Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
19+
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
2020
from constructs import Construct
2121
from cdktf import TerraformStack
2222
#
@@ -87,4 +87,4 @@ The `vcs_repo` block contains:
8787
* `oauth_token_id` - OAuth token ID of the configured VCS connection.
8888
* `tags_regex` - A regular expression used to trigger a Workspace run for matching Git tags.
8989

90-
<!-- cache-key: cdktf-0.17.1 input-031765b2961bc629e8d9019635a143979617a42923c522fb8f14fba23a365b45 -->
90+
<!-- cache-key: cdktf-0.18.0 input-031765b2961bc629e8d9019635a143979617a42923c522fb8f14fba23a365b45 -->

website/docs/cdktf/python/d/workspace_ids.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Use this data source to get a map of workspace IDs.
1414
## Example Usage
1515

1616
```python
17-
# Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
17+
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
1818
from constructs import Construct
1919
from cdktf import TerraformStack
2020
#
@@ -64,4 +64,4 @@ In addition to all arguments above, the following attributes are exported:
6464
* `full_names` - A map of workspace names and their full names, which look like `<ORGANIZATION>/<WORKSPACE>`.
6565
* `ids` - A map of workspace names and their opaque, immutable IDs, which look like `ws-<RANDOM STRING>`.
6666

67-
<!-- cache-key: cdktf-0.17.1 input-a50ddfd1d990de8d1cbdba1a7182f9b5d086fbc397439bdd1d0bd057263938e3 -->
67+
<!-- cache-key: cdktf-0.18.0 input-a50ddfd1d990de8d1cbdba1a7182f9b5d086fbc397439bdd1d0bd057263938e3 -->

website/docs/cdktf/python/d/workspace_run_task.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Use this data source to get information about a [Workspace Run tasks](https://de
1616
## Example Usage
1717

1818
```python
19-
# Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
19+
# DO NOT EDIT. Code generated by 'cdktf convert' - Please report bugs at https://cdk.tf/bug
2020
from constructs import Construct
2121
from cdktf import TerraformStack
2222
#
@@ -48,4 +48,4 @@ In addition to all arguments above, the following attributes are exported:
4848
* `id` - The ID of the Workspace Run task.
4949
* `stage` - Which stage the task will run in.
5050

51-
<!-- cache-key: cdktf-0.17.1 input-e44aa1a06a0b5bb16601c13377b266fdc3a847bb3569a6370f46a0120eba6a5c -->
51+
<!-- cache-key: cdktf-0.18.0 input-e44aa1a06a0b5bb16601c13377b266fdc3a847bb3569a6370f46a0120eba6a5c -->

0 commit comments

Comments
 (0)