Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ $ teleport-jira start
```code
$ helm install teleport-plugin-jira teleport/teleport-plugin-jira \
--values teleport-jira-helm.yaml \
--version (=teleport.plugin.version=)
--version 13.3.8
```
</TabItem>
</Tabs>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ $ teleport-msteams validate <email of your teams account>
If everything works fine, the log output should look like this:

```text
teleport-msteams v(=teleport.plugin.version=) go(=teleport.golang=)
teleport-msteams v13.3.8 go(=teleport.golang=)

- Checking application xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx status...
- Application found in the team app store (internal ID: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx)
Expand Down Expand Up @@ -446,7 +446,7 @@ and your Teleport cluster:
```code
$ teleport-msteams start -d
DEBU DEBUG logging enabled msteams/main.go:120
INFO Starting Teleport MS Teams Plugin (=teleport.plugin.version=): msteams/app.go:74
INFO Starting Teleport MS Teams Plugin 13.3.8: msteams/app.go:74
DEBU Attempting GET teleport.example.com:443/webapi/find webclient/webclient.go:129
DEBU Checking Teleport server version msteams/app.go:242
INFO MS Teams app found in org app store id:292e2881-38ab-7777-8aa7-cefed1404a63 name:TeleBot msteams/app.go:179
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/agents/deploy-agents-terraform.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ includes a placeholder value:
Replace the placeholder value with the latest version:

```code
$ sed -i "" "s/TELEPORT_VERSION/(=teleport.plugin.version=)/" provider.tf
$ sed -i "" "s/TELEPORT_VERSION/13.3.8/" provider.tf
```

## Step 3/3. Verify the deployment
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/includes/configure-event-handler.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Service or Proxy Service:

```code
$ TELEPORT_CLUSTER_ADDRESS=mytenant.teleport.sh:443
$ docker run -v `pwd`:/opt/teleport-plugin -w /opt/teleport-plugin public.ecr.aws/gravitational/teleport-plugin-event-handler:(=teleport.plugin.version=) configure . ${TELEPORT_CLUSTER_ADDRESS?}
$ docker run -v `pwd`:/opt/teleport-plugin -w /opt/teleport-plugin public.ecr.aws/gravitational/teleport-plugin-event-handler:13.3.8 configure . ${TELEPORT_CLUSTER_ADDRESS?}
```

In order to export audit events, you'll need to have the root certificate and the
Expand Down
10 changes: 5 additions & 5 deletions docs/pages/includes/install-event-handler.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<TabItem label="Linux">

```code
$ curl -L -O https://get.gravitational.com/teleport-event-handler-v(=teleport.plugin.version=)-linux-amd64-bin.tar.gz
$ tar -zxvf teleport-event-handler-v(=teleport.plugin.version=)-linux-amd64-bin.tar.gz
$ curl -L -O https://get.gravitational.com/teleport-event-handler-v13.3.8-linux-amd64-bin.tar.gz
$ tar -zxvf teleport-event-handler-v13.3.8-linux-amd64-bin.tar.gz
```

We currently only build the Event Handler plugin for amd64 machines. For ARM
Expand All @@ -14,8 +14,8 @@ architecture, you can build from source.
<TabItem label="macOS">

```code
$ curl -L -O https://get.gravitational.com/teleport-event-handler-v(=teleport.plugin.version=)-darwin-amd64-bin.tar.gz
$ tar -zxvf teleport-event-handler-v(=teleport.plugin.version=)-darwin-amd64-bin.tar.gz
$ curl -L -O https://get.gravitational.com/teleport-event-handler-v13.3.8-darwin-amd64-bin.tar.gz
$ tar -zxvf teleport-event-handler-v13.3.8-darwin-amd64-bin.tar.gz
```

We currently only build the event handler plugin for amd64 machines. If your
Expand All @@ -29,7 +29,7 @@ event handler plugin. You can also build from source.
Ensure that you have Docker installed and running.

```code
$ docker pull public.ecr.aws/gravitational/teleport-plugin-event-handler:(=teleport.plugin.version=)
$ docker pull public.ecr.aws/gravitational/teleport-plugin-event-handler:13.3.8
```

</TabItem>
Expand Down
14 changes: 7 additions & 7 deletions docs/pages/includes/plugins/install-access-request.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ plugins from source. You can run the plugin from a remote host or your local
development machine.

```code
$ curl -L -O https://get.gravitational.com/teleport-access-{{ name }}-v(=teleport.plugin.version=)-linux-amd64-bin.tar.gz
$ tar -xzf teleport-access-{{ name }}-v(=teleport.plugin.version=)-linux-amd64-bin.tar.gz
$ curl -L -O https://get.gravitational.com/teleport-access-{{ name }}-v13.3.8-linux-amd64-bin.tar.gz
$ tar -xzf teleport-access-{{ name }}-v13.3.8-linux-amd64-bin.tar.gz
$ cd teleport-access-{{ name }}
$ sudo ./install
```
Expand All @@ -16,7 +16,7 @@ Make sure the binary is installed:

```code
$ teleport-{{ name }} version
teleport-{{ name }} v(=teleport.plugin.version=) git:teleport-{{ name }}-v(=teleport.plugin.version=)-fffffffff go(=teleport.golang=)
teleport-{{ name }} v13.3.8 git:teleport-{{ name }}-v13.3.8-fffffffff go(=teleport.golang=)
```

</TabItem>
Expand All @@ -26,14 +26,14 @@ We currently only provide Docker images for `linux-amd64`.
Pull the Docker image for the latest access request plugin by running the following command:

```code
$ docker pull public.ecr.aws/gravitational/teleport-plugin-{{ name }}:(=teleport.plugin.version=)
$ docker pull public.ecr.aws/gravitational/teleport-plugin-{{ name }}:13.3.8
```

Make sure the plugin is installed by running the following command:

```code
$ docker run public.ecr.aws/gravitational/teleport-plugin-{{ name }}:(=teleport.plugin.version=) version
teleport-{{ name }} v(=teleport.plugin.version=) git:teleport-{{ name }}-v(=teleport.plugin.version=)-fffffffff (=teleport.golang=)
$ docker run public.ecr.aws/gravitational/teleport-plugin-{{ name }}:13.3.8 version
teleport-{{ name }} v13.3.8 git:teleport-{{ name }}-v13.3.8-fffffffff (=teleport.golang=)
```

For a list of available tags, visit [Amazon ECR Public Gallery](https://gallery.ecr.aws/gravitational/teleport-plugin-{{ name }}).
Expand All @@ -55,7 +55,7 @@ Make sure the binary is installed:

```code
$ teleport-{{ name }} version
teleport-{{ name }} v(=teleport.plugin.version=) git:teleport-{{ name }}-v(=teleport.plugin.version=)-fffffffff go(=teleport.golang=)
teleport-{{ name }} v13.3.8 git:teleport-{{ name }}-v13.3.8-fffffffff go(=teleport.golang=)
```

</TabItem>
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/management/export-audit-events/datadog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ To start the event handler in Kubernetes, run the following command:
```code
$ helm install teleport-plugin-event-handler teleport/teleport-plugin-event-handler \
--values teleport-plugin-event-handler-values.yaml \
--version (=teleport.plugin.version=)
--version 13.3.8
```

</TabItem>
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/management/export-audit-events/fluentd.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ To start the event handler in Kubernetes, run the following command:
```code
$ helm install teleport-plugin-event-handler teleport/teleport-plugin-event-handler \
--values teleport-plugin-event-handler-values.yaml \
--version (=teleport.plugin.version=)
--version 13.3.8
```

</TabItem>
Expand Down