Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ baton resources
`baton-temporalcloud` will pull down information about the following Temporal Cloud resources:
- Namespaces
- Users
- User Groups
- Account Roles

# Contributing, Support and Issues
Expand Down
20 changes: 20 additions & 0 deletions baton_capabilities.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,26 @@
],
"permissions": {}
},
{
"resourceType": {
"id": "group",
"displayName": "User Group",
"traits": [
"TRAIT_GROUP"
],
"annotations": [
{
"@type": "type.googleapis.com/c1.connector.v2.OptInRequired"
}
]
},
"capabilities": [
"CAPABILITY_SYNC",
"CAPABILITY_PROVISION"
],
"permissions": {},
"optInRequired": true
},
{
"resourceType": {
"id": "namespace",
Expand Down
18 changes: 10 additions & 8 deletions docs/connector.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,16 @@ sidebarTitle: Temporal Cloud

## Capabilities

| Resource | Sync | Provision |
| :--- | :--- | :--- |
| Accounts | <Icon icon="square-check" iconType="solid" color="#c937ae"/> | <Icon icon="square-check" iconType="solid" color="#c937ae"/> |
| Namespaces | <Icon icon="square-check" iconType="solid" color="#c937ae"/> | <Icon icon="square-check" iconType="solid" color="#c937ae"/> |
| Account roles* | <Icon icon="square-check" iconType="solid" color="#c937ae"/> | <Icon icon="square-check" iconType="solid" color="#c937ae"/> |
| Service accounts | <Icon icon="square-check" iconType="solid" color="#c937ae"/> | |

*The Account Owner and Finance Manager roles are synced but cannot be provisioned.
| Resource | Sync | Provision |
| :--- | :--- | :--- |
| Accounts | <Icon icon="square-check" iconType="solid" color="#c937ae"/> | <Icon icon="square-check" iconType="solid" color="#c937ae"/> |
| Namespaces | <Icon icon="square-check" iconType="solid" color="#c937ae"/> | <Icon icon="square-check" iconType="solid" color="#c937ae"/> |
| User Groups \*\* | <Icon icon="square-check" iconType="solid" color="#c937ae"/> | <Icon icon="square-check" iconType="solid" color="#c937ae"/> |
| Account roles \* | <Icon icon="square-check" iconType="solid" color="#c937ae"/> | <Icon icon="square-check" iconType="solid" color="#c937ae"/> |
| Service accounts | <Icon icon="square-check" iconType="solid" color="#c937ae"/> | |

\*The Account Owner and Finance Manager roles are synced but cannot be provisioned.
\*\*User Groups are opt-in and require an API key with the Owner or Global Admin account role. Membership of SCIM and Google groups is externally managed and cannot be provisioned by C1.
Comment on lines +19 to +20

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🟡 Suggestion: These two footnotes are consecutive lines with no blank line between them, so Markdown/MDX treats them as one paragraph and renders the soft line break as a space — they will display run-together on a single line. Separate them with a blank line (confidence: high).

Suggested change
\*The Account Owner and Finance Manager roles are synced but cannot be provisioned.
\*\*User Groups are opt-in and require an API key with the Owner or Global Admin account role. Membership of SCIM and Google groups is externally managed and cannot be provisioned by C1.
\*The Account Owner and Finance Manager roles are synced but cannot be provisioned.
\*\*User Groups are opt-in and require an API key with the Owner or Global Admin account role. Membership of SCIM and Google groups is externally managed and cannot be provisioned by C1.


The Temporal Cloud connector supports [automatic account provisioning and deprovisioning](/product/admin/account-provisioning).

Expand Down
2 changes: 1 addition & 1 deletion pkg/config/conf.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ var (
field.WithRequired(false),
)


BaseURLField = field.StringField(
"base-url",
field.WithDescription("Override the Temporal Cloud API URL (for testing)"),
Expand Down
Loading
Loading