Skip to content

Commit

Permalink
Merge pull request #49 from DrFaust92/docs
Browse files Browse the repository at this point in the history
Docs refresh
  • Loading branch information
DrFaust92 authored Mar 19, 2022
2 parents f599e6a + f097cb5 commit 9e2aa7e
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/data-sources/current_user.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description: |-

# bitbucket\_user

Provdes a way to fetch data of the current user.
Provides a way to fetch data of the current user.

## Example Usage

Expand Down
2 changes: 1 addition & 1 deletion docs/data-sources/hook_types.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description: |-

# bitbucket\_hook\_type

Provdes a way to fetch data of hook types.
Provides a way to fetch data of hook types.

## Example Usage

Expand Down
2 changes: 1 addition & 1 deletion docs/data-sources/ip_ranges.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description: |-

# bitbucket\_hook\_type

Provdes a way to fetch IP Ranges for whitelisting.
Provides a way to fetch IP Ranges for whitelisting.

## Example Usage

Expand Down
2 changes: 1 addition & 1 deletion docs/data-sources/pipeline_oidc_config.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description: |-

# bitbucket\_user

Provdes a way to fetch data on a pipeline OIDC Config.
Provides a way to fetch data on a pipeline OIDC Config.

## Example Usage

Expand Down
2 changes: 1 addition & 1 deletion docs/data-sources/pipeline_oidc_config_keys.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description: |-

# bitbucket\_user

Provdes a way to fetch data on a pipeline OIDC Config Keys.
Provides a way to fetch data on a pipeline OIDC Config Keys.

## Example Usage

Expand Down
2 changes: 1 addition & 1 deletion docs/data-sources/user.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description: |-

# bitbucket\_user

Provdes a way to fetch data on a user.
Provides a way to fetch data on a user.

## Example Usage

Expand Down
32 changes: 32 additions & 0 deletions docs/data-sources/workspace.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
layout: "bitbucket"
page_title: "Bitbucket: bitbucket_workspace"
sidebar_current: "docs-bitbucket-data-workspace"
description: |-
Provides a data for a Bitbucket workspace
---

# bitbucket\_workspace

Provides a way to fetch data on a workspace.

## Example Usage

```hcl
data "bitbucket_workspace" "example" {
workspace = "gob"
}
```

## Argument Reference

The following arguments are supported:

* `workspace` - (Required) This can either be the workspace ID (slug) or the workspace UUID surrounded by curly-braces

## Attributes Reference

* `name` - The name of the workspace.
* `slug` - The short label that identifies this workspace.
* `is_private` - Indicates whether the workspace is publicly accessible, or whether it is private to the members and consequently only visible to members.
* `id` - The workspace's immutable id.

0 comments on commit 9e2aa7e

Please sign in to comment.