Skip to content

Commit 4b7ea57

Browse files
authored
Remove remaining erroneous instances of 'the Pulumi Cloud' (#15437)
1 parent 56135d0 commit 4b7ea57

File tree

15 files changed

+23
-26
lines changed

15 files changed

+23
-26
lines changed

content/docs/iac/extending-pulumi/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Here's some quick rules-of-thumb for deciding whether to create a component or a
6262

6363
## Local vs Remote
6464

65-
In our documentation we sometimes refer to things as being "local" vs "remote" (e.g. using a local package). This has to do with where the Pulumi Engine is running. When you run the `pulumi up` command via the CLI, the Pulumi Engine will run on the same machine. That engine loads and runs the plugins and interacts with the backend to manage state. In this mode, it is running *locally*, and therefore has access to the filesystem on that machine, and could load a plugin directly from a locally stored directory. However, when using Pulumi Deployments in the Pulumi Cloud, the Pulumi Engine is running in a virtual machine on our infrastructure. In that case, it is running "remotely".
65+
In our documentation we sometimes refer to things as being "local" vs "remote" (e.g. using a local package). This has to do with where the Pulumi Engine is running. When you run the `pulumi up` command via the CLI, the Pulumi Engine will run on the same machine. That engine loads and runs the plugins and interacts with the backend to manage state. In this mode, it is running *locally*, and therefore has access to the filesystem on that machine, and could load a plugin directly from a locally stored directory. However, when using Pulumi Deployments in Pulumi Cloud, the Pulumi Engine is running in a virtual machine on our infrastructure. In that case, it is running "remotely".
6666

6767
This matters when we talk about components and providers because Pulumi Deployments might fail to load a plugin that doesn't exist in its environment. In order for Pulumi Deployments to access the plugin, it needs to be packaged and published to the Pulumi Registry, so that it can be downloaded at runtime. Or, in the case of components and dynamic providers, the code needs to be committed alongside your normal Pulumi program code, in the same Git repository.
6868

content/docs/iac/get-started/azure/destroy-stack.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Now that you've seen how to deploy changes to our program, let's clean up and te
1515
To destroy resources, run the following:
1616

1717
```bash
18-
$ pulumi destroy
18+
pulumi destroy
1919
```
2020

2121
You'll be prompted to make sure you really want to delete these resources. This can take a minute or two; Pulumi waits until all resources are shut down and deleted before it considers the destroy operation to be complete.
@@ -58,7 +58,7 @@ Duration: 53s
5858
```
5959

6060
To delete the stack itself, run [`pulumi stack rm`](/docs/cli/commands/pulumi_stack_rm). Note that this removes the stack
61-
entirely from the Pulumi Cloud, along with all of its update history.
61+
entirely from Pulumi Cloud, along with all of its update history.
6262

6363
Congratulations! You've successfully provisioned some cloud resources using Pulumi. By completing this guide you have successfully:
6464

content/docs/iac/get-started/kubernetes/destroy-stack.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ If you want to remove the stack completely, run `pulumi stack rm dev`.
6767
```
6868

6969
To delete the stack itself, run [`pulumi stack rm`](/docs/cli/commands/pulumi_stack_rm). Note that this removes the stack
70-
entirely from the Pulumi Cloud, along with all of its update history.
70+
entirely from Pulumi Cloud, along with all of its update history.
7171

7272
```bash
7373
$ pulumi stack rm

content/docs/iac/support/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Pulumi provides primitives so you can enforce your [secrets](/docs/concepts/secr
4949

5050
### How does Pulumi manage secrets?
5151

52-
When you set a [configuration](/docs/concepts/config/) value, you may pass `--secret` to `pulumi config set` which causes the value to be encrypted so it can be safely persisted in `Pulumi.<stack-name>.yaml`. For every stack the Pulumi Cloud manages a unique encryption key, which it uses to encrypt secrets for that stack (and this is configurable to use your own custom secrets provider). Because a different key is used for each stack, encrypting the same value across two different stacks will lead to different encrypted strings being stored in the `Pulumi.<stack-name>.yaml` files. This also means that you cannot copy an encrypted value from one file to another using a text editor. Instead, you must use `pulumi config set`.
52+
When you set a [configuration](/docs/concepts/config/) value, you may pass `--secret` to `pulumi config set` which causes the value to be encrypted so it can be safely persisted in `Pulumi.<stack-name>.yaml`. For every stack Pulumi Cloud manages a unique encryption key, which it uses to encrypt secrets for that stack (and this is configurable to use your own custom secrets provider). Because a different key is used for each stack, encrypting the same value across two different stacks will lead to different encrypted strings being stored in the `Pulumi.<stack-name>.yaml` files. This also means that you cannot copy an encrypted value from one file to another using a text editor. Instead, you must use `pulumi config set`.
5353

5454
When you run a preview, update or destroy, pulumi decrypts this data. It is plain text during the execution of your deployment, and any part of your Pulumi program may access it using the Pulumi config object.
5555

content/docs/iac/support/troubleshooting.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -251,11 +251,11 @@ Full error example:
251251
error: could not load plugin for aws provider 'urn:pulumi:<stack_name>::pulumi-service::pulumi:providers:aws::default': no resource plugin 'aws-v0.16.2' found in the workspace or on your $PATH, install the plugin using \`pulumi plugin install resource aws v0.16.2\`
252252
```
253253

254-
### Cannot connect to the Pulumi Cloud
254+
### Cannot connect to Pulumi Cloud
255255

256-
If your network blocks external traffic and you're using the Pulumi Cloud to manage your state, your security team may need the following details to allow the Pulumi CLI to connect to the Pulumi Cloud:
256+
If your network blocks external traffic and you're using Pulumi Cloud to manage your state, your security team may need the following details to allow the Pulumi CLI to connect to Pulumi Cloud:
257257

258-
- The URL that the Pulumi CLI uses to connect to the Pulumi Cloud is `https://api.pulumi.com`. (It does not use `https://app.pulumi.com`, so if you want to view the console from a web browser, you will need to enable that as well.)
258+
- The URL that the Pulumi CLI uses to connect to Pulumi Cloud is `https://api.pulumi.com`. (It does not use `https://app.pulumi.com`, so if you want to view the console from a web browser, you will need to enable that as well.)
259259
- All access goes over HTTPS via port 443.
260260

261261
### Nothing happens due to a network proxy

content/docs/iac/using-pulumi/continuous-delivery/add-support-for-cicd-systems.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title_tag: "Add Support for CI/CD Systems"
33
meta_desc: This guide walks you through how you can configure your CI/CD environment manually
4-
to surface data in the Pulumi Cloud.
4+
to surface data in Pulumi Cloud.
55
title: Adding CI/CD support
66
h1: Adding Pulumi support for CI/CD systems
77
meta_image: /images/docs/meta-images/docs-meta.png
@@ -21,7 +21,7 @@ aliases:
2121

2222
If the Pulumi CLI doesn't automatically detect your CI/CD system, this guide
2323
walks you through how you can configure your CI/CD environment manually
24-
to surface data in the Pulumi Cloud.
24+
to surface data in Pulumi Cloud.
2525

2626
## Overview
2727

@@ -69,7 +69,7 @@ The `EnvVarsToDetect` is used by the `IsCI()` in [`systems.go`](https://github.c
6969

7070
### Detecting Additional Metadata About A CI Build
7171

72-
A CI build could have been triggered by a PR or a push build. In this case, the linked PR number is useful so that the Pulumi Cloud can link to it. Note that the detection is done on a best-effort basis. We support linking to the following Git-based version control systems:
72+
A CI build could have been triggered by a PR or a push build. In this case, the linked PR number is useful so that Pulumi Cloud can link to it. Note that the detection is done on a best-effort basis. We support linking to the following Git-based version control systems:
7373

7474
- Atlassian Bitbucket
7575
- Azure DevOps

content/docs/iac/using-pulumi/continuous-delivery/azure-devops.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Install the Pulumi task from the [Visual Studio Marketplace](https://marketplace
7070

7171
The task requires the use of a service connection, which allows the pipeline to connect to your Azure Subscription. The task also looks for the build variable `pulumi.access.token`, and automatically maps it to the environment variable `PULUMI_ACCESS_TOKEN`, that is used by the CLI for non-interactive logins. You may still use the `env` directive to map any other environment variables you wish to make available to your Pulumi app.
7272

73-
You can obtain a [Pulumi access token](/docs/pulumi-cloud/accounts#access-tokens) from the Pulumi Cloud. Then use the task in your pipeline yaml.
73+
You can obtain a [Pulumi access token](/docs/pulumi-cloud/accounts#access-tokens) from Pulumi Cloud. Then use the task in your pipeline yaml.
7474

7575
```yaml
7676
# Lines omitted for brevity.

content/docs/iac/using-pulumi/continuous-delivery/github-actions.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ jobs:
347347
Now that you've got these two common workflows defined, you'll need to configure your
348348
secrets. Secrets are exposed as environment variables to the GitHub Actions runtime
349349
environment. Minimally, you'll need to supply a [Pulumi access token](/docs/pulumi-cloud/accounts#access-tokens)
350-
to allow the Pulumi CLI to communicate with the Pulumi Cloud on your behalf, and
350+
to allow the Pulumi CLI to communicate with Pulumi Cloud on your behalf, and
351351
you'll probably want to provide credentials for communicating with your cloud
352352
provider as well.
353353

@@ -360,7 +360,7 @@ to your repo's **Settings** tab, where you'll find the new **Secrets** area:
360360

361361
First, [create a new Pulumi Access Token](https://app.pulumi.com/account/tokens), then
362362
submit that token as a new secret named named `PULUMI_ACCESS_TOKEN`. This enables your
363-
GitHub Action to communicate with the Pulumi Cloud on your behalf.
363+
GitHub Action to communicate with Pulumi Cloud on your behalf.
364364

365365
Next, add secrets for your cloud credentials, just as you did `PULUMI_ACCESS_TOKEN` above,
366366
based on your provider of choice. For example:
@@ -379,7 +379,7 @@ went as planned:
379379
![Action Checks](/images/docs/reference/gh-actions-checks.png)
380380

381381
Select the Logs pane to see the full output of the Pulumi CLI, along with the URL of your
382-
deployment on the Pulumi Cloud with more details:
382+
deployment on Pulumi Cloud with more details:
383383

384384
![Action Logs](/images/docs/reference/gh-actions-logs.png)
385385

@@ -399,7 +399,7 @@ the GitHub Actions container directly.
399399
### Pulumi GitHub App
400400

401401
The [Pulumi GitHub App](/docs/using-pulumi/continuous-delivery/github-app/) is something you install on your
402-
GitHub organization. It allows the Pulumi Cloud to leave comments on Pull Requests.
402+
GitHub organization. It allows Pulumi Cloud to leave comments on Pull Requests.
403403

404404
Once the Pulumi GitHub App is installed, when your GitHub Actions run Pulumi, a summary of
405405
any resource changes will be left on the Pull Request, as well as links to the Pulumi

content/docs/iac/using-pulumi/continuous-delivery/github-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ This provides even more detail about any resource changes, including the full up
3939
## Installation and Configuration
4040

4141
{{% notes type="warning" %}}
42-
While the app can be installed via GitHub, it **must be installed through the Pulumi Cloud** using the steps below to ensure correct setup. Installing through the Pulumi Cloud ensures we have a connection from Pulumi to your GitHub user or organization.
42+
While the app can be installed via GitHub, it **must be installed through Pulumi Cloud** using the steps below to ensure correct setup. Installing through Pulumi Cloud ensures we have a connection from Pulumi to your GitHub user or organization.
4343
{{% /notes %}}
4444

4545
{{% notes type="info" %}}

content/docs/iac/using-pulumi/continuous-delivery/harness.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -718,11 +718,8 @@ Following these best practices will help ensure reliable, secure, and maintainab
718718
When integrating Harness with Pulumi, you may encounter some common issues. Here are solutions to the most frequently encountered problems:
719719

720720
- **Authentication Failures**: Ensure all required secrets are properly configured in Harness or Pulumi ESC.
721-
722-
- **Stack Not Found**: Verify stack names and ensure stacks exist in the Pulumi Cloud.
723-
721+
- **Stack Not Found**: Verify stack names and ensure stacks exist in Pulumi Cloud.
724722
- **Resource Conflicts**: Use `pulumi refresh` to sync state with actual cloud resources.
725-
726723
- **Pipeline Timeouts**: Increase timeout values for long-running infrastructure deployments.
727724

728725
For additional troubleshooting, see our [CI/CD troubleshooting guide](/docs/iac/using-pulumi/continuous-delivery/troubleshooting-guide).

0 commit comments

Comments
 (0)