Skip to content

Commit

Permalink
Fix typos (pulumi#665)
Browse files Browse the repository at this point in the history
  • Loading branch information
pgrimaud committed Apr 23, 2020
1 parent f0ba1c8 commit 07543bd
Show file tree
Hide file tree
Showing 19 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion aws-fs-lambda-webserver/LambdaWebServer/Setup.fs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ let configureAppConfiguration (ctx:WebHostBuilderContext) (builder : IConfigurat
.AddEnvironmentVariables() |> ignore

// ---------------------------------
// This type is the entry point when running in Lambda. It has similar responsiblities
// This type is the entry point when running in Lambda. It has similar responsibilities
// to the main entry point function that can be used for local development.
// ---------------------------------
type LambdaEntryPoint() =
Expand Down
2 changes: 1 addition & 1 deletion aws-ts-eks-hello-world/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ After cloning this repo, from this working directory, run these commands:

To access your new Kubernetes cluster using `kubectl`, we need to set up the
`kubeconfig` file and download `kubectl`. We can leverage the Pulumi
stack output in the CLI, as Pulumi faciliates exporting these objects for us.
stack output in the CLI, as Pulumi facilitates exporting these objects for us.

```bash
$ pulumi stack output kubeconfig > kubeconfig
Expand Down
2 changes: 1 addition & 1 deletion aws-ts-pulumi-miniflux/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
pulumi stack init
```

1. Apply the required configuration properties, making adjustments as you like, and taking care to choose strong passwords for the database user and service adminstrator (which will be stored as encrypted [Pulumi secrets](https://www.pulumi.com/docs/intro/concepts/config/):
1. Apply the required configuration properties, making adjustments as you like, and taking care to choose strong passwords for the database user and service administrator (which will be stored as encrypted [Pulumi secrets](https://www.pulumi.com/docs/intro/concepts/config/):

```bash
pulumi config set aws:region us-west-2
Expand Down
2 changes: 1 addition & 1 deletion aws-ts-static-website/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ This is caused by CloudFront confirming the ETag of the resource before applying
ETag is essentially a "version", and AWS is rejecting any requests that are trying to update
any version but the "latest".

This error will occurr when the state of the ETag get out of sync between the Pulumi Service
This error will occur when the state of the ETag get out of sync between the Pulumi Service
and AWS. (Which can happen when inspecting the CloudFront distribution in the AWS console.)

You can fix this by running `pulumi refresh` to pickup the newer ETag values.
Expand Down
2 changes: 1 addition & 1 deletion aws-ts-static-website/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ const distributionArgs: aws.cloudfront.DistributionArgs = {
// "100" is the least broad, and also the least expensive.
priceClass: "PriceClass_100",

// You can customize error responses. When CloudFront recieves an error from the origin (e.g. S3 or some other
// You can customize error responses. When CloudFront receives an error from the origin (e.g. S3 or some other
// web service) it can return a different error code, and return the response for a different resource.
customErrorResponses: [
{ errorCode: 404, responseCode: 404, responsePagePath: "/404.html" },
Expand Down
2 changes: 1 addition & 1 deletion azure-cs-msi-keyvault-rbac/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[Managed identities](https://docs.microsoft.com/en-us/azure/active-directory/managed-identities-azure-resources/) for Azure resources provides Azure services with an automatically managed identity in Azure Active Directory (Azure AD).

This example demostrates using a managed identity with Azure App Service to access Azure KeyVault, Azure Storage, and Azure SQL Database without passwords or secrets.
This example demonstrates using a managed identity with Azure App Service to access Azure KeyVault, Azure Storage, and Azure SQL Database without passwords or secrets.

The application consists of several parts:

Expand Down
2 changes: 1 addition & 1 deletion azure-py-msi-keyvault-rbac/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[Managed identities](https://docs.microsoft.com/en-us/azure/active-directory/managed-identities-azure-resources/) for Azure resources provides Azure services with an automatically managed identity in Azure Active Directory (Azure AD).

This example demostrates using a managed identity with Azure App Service to access Azure KeyVault, Azure Storage, and Azure SQL Database without passwords or secrets.
This example demonstrates using a managed identity with Azure App Service to access Azure KeyVault, Azure Storage, and Azure SQL Database without passwords or secrets.

The application consists of several parts:

Expand Down
2 changes: 1 addition & 1 deletion azure-ts-cosmosapp-component/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The [`CosmosApp`](cosmosApp.ts) defines a skeleton for the application. While no
The application has three example of using this component with the following compute services:

- Azure Functions
- Azure Container Intances
- Azure Container Instances
- Azure VM Scale Sets + Azure Load Balancer

## Prerequisites
Expand Down
2 changes: 1 addition & 1 deletion azure-ts-functions-raw/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const javaApp = new azure.appservice.ArchiveFunctionApp("http-java", {
},
});

// Create a dedicated resoure group for Linux App Service Plan - require for Python
// Create a dedicated resource group for Linux App Service Plan - require for Python
const linuxResourceGroup = new azure.core.ResourceGroup("linuxrg");

// Python Function App won't run on Windows Consumption Plan, so we create a Linux Consumption Plan instead
Expand Down
2 changes: 1 addition & 1 deletion azure-ts-msi-keyvault-rbac/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[Managed identities](https://docs.microsoft.com/en-us/azure/active-directory/managed-identities-azure-resources/) for Azure resources provides Azure services with an automatically managed identity in Azure Active Directory (Azure AD).

This example demostrates using a managed identity with Azure App Service to access Azure KeyVault, Azure Storage, and Azure SQL Database without passwords or secrets.
This example demonstrates using a managed identity with Azure App Service to access Azure KeyVault, Azure Storage, and Azure SQL Database without passwords or secrets.

The application consists of several parts:

Expand Down
2 changes: 1 addition & 1 deletion azure-ts-static-website/staticWebsite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class StorageStaticWebsiteProvider implements pulumi.dynamic.ResourceProvider {
const url = require("url");
const accountName = inputs[accountNameProp];

// Helper function to execute a command, supress the warnings from polluting the output, and parse the result as JSON
// Helper function to execute a command, suppress the warnings from polluting the output, and parse the result as JSON
const executeToJson = (command: string) => JSON.parse(execSync(command, { stdio: ["pipe", "pipe", "ignore"] }).toString());

// Install Azure CLI extension for storage (currently, only the preview version has the one we need)
Expand Down
2 changes: 1 addition & 1 deletion gcp-cs-gke/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ After cloning this repo, from this working directory, run these commands:

To access your new Kubernetes cluster using `kubectl`, we need to setup the
`kubeconfig` file and download `kubectl`. We can leverage the Pulumi
stack output in the CLI, as Pulumi faciliates exporting these objects for us.
stack output in the CLI, as Pulumi facilitates exporting these objects for us.

```bash
$ pulumi stack output KubeConfig > kubeconfig
Expand Down
2 changes: 1 addition & 1 deletion gcp-go-functions-raw/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func main() {
return err
}

// Export the tigger URL.
// Export the trigger URL.
ctx.Export("function", function.HttpsTriggerUrl)
return nil
})
Expand Down
2 changes: 1 addition & 1 deletion gcp-go-functions/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func main() {
return err
}

// Export the tigger URL.
// Export the trigger URL.
ctx.Export("function", function.HttpsTriggerUrl)
return nil
})
Expand Down
2 changes: 1 addition & 1 deletion gcp-go-gke/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ After cloning this repo, from this working directory, run these commands:

To access your new Kubernetes cluster using `kubectl`, we need to setup the
`kubeconfig` file and download `kubectl`. We can leverage the Pulumi
stack output in the CLI, as Pulumi faciliates exporting these objects for us.
stack output in the CLI, as Pulumi facilitates exporting these objects for us.

```bash
$ pulumi stack output kubeconfig > kubeconfig
Expand Down
2 changes: 1 addition & 1 deletion gcp-ts-gke-hello-world/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ After cloning this repo, from this working directory, run these commands:

To access your new Kubernetes cluster using `kubectl`, we need to setup the
`kubeconfig` file and download `kubectl`. We can leverage the Pulumi
stack output in the CLI, as Pulumi faciliates exporting these objects for us.
stack output in the CLI, as Pulumi facilitates exporting these objects for us.

```bash
$ pulumi stack output kubeconfig > kubeconfig
Expand Down
2 changes: 1 addition & 1 deletion kubernetes-ts-staged-rollout-with-prometheus/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ can see `canary-example-app` and `canary-staging-app` created.

1. **IMPORTANT NOTE:** The code in `index.ts` is meant to be run out-of-cluster (_e.g._, on your
local machine). It will thus call `kubectl port-forward` on your behalf so that the Prometheus
service is fowarded to your local machine, which allows this program to poll for metrics. **If
service is forwarded to your local machine, which allows this program to poll for metrics. **If
you are running Pulumi in-cluster, you can comment out this part of the example.**

1. Perform the deployment:
Expand Down
2 changes: 1 addition & 1 deletion twilio-ts-component/Pulumi.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: twilio-ts-component
description: A small example that builds a Pulumi component for Twilio Programable SMS
description: A small example that builds a Pulumi component for Twilio Programmable SMS
runtime: nodejs
template:
config:
Expand Down
2 changes: 1 addition & 1 deletion twilio-ts-component/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ A sample for interacting with Twilio SMS. This sample includes a custom Componen
Update duration: 27.155440706s
```

1. Send an SMS message to the phone number you have registered with Twilio, or make a request by hand with cURL (you may wish to pass aditional data with your request, see https://www.twilio.com/docs/sms/twiml#request-parameters for the complete set of data that Twilio sends).
1. Send an SMS message to the phone number you have registered with Twilio, or make a request by hand with cURL (you may wish to pass additional data with your request, see https://www.twilio.com/docs/sms/twiml#request-parameters for the complete set of data that Twilio sends).

```
$ curl -X POST -d "From=+12065555555" -d "Body=Hello!" $(pulumi stack output smsUrl)
Expand Down

0 comments on commit 07543bd

Please sign in to comment.