@checkly/pulumi 0.0.3 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -53,7 +53,7 @@ Once you generated the `API Key` there are two ways to communicate your authoriz
53
53
 
54
54
  1. Open your terminal and run `$ pulumi new` to create a new Pulumi project, chose the `javascript` template and the target stack.
55
55
  1. Install the Checkly Pulumi provider using npm: `$ npm i @checkly/pulumi`.
56
- 1. Create an `index.js` file in the root of your project and paste the following code:
56
+ 1. Look for `index.js` file in the root of your project and replace content with the following code:
57
57
 
58
58
  ```javascript
59
59
  const checkly = require("@checkly/pulumi")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkly/pulumi",
3
- "version": "0.0.3",
3
+ "version": "1.0.0",
4
4
  "description": "A Pulumi package for creating and managing Checkly monitoring resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -12,7 +12,7 @@
12
12
  "license": "MIT",
13
13
  "scripts": {
14
14
  "build": "tsc",
15
- "install": "node scripts/install-pulumi-plugin.js resource checkly 0.0.3"
15
+ "install": "node scripts/install-pulumi-plugin.js resource checkly 1.0.0"
16
16
  },
17
17
  "dependencies": {
18
18
  "@pulumi/pulumi": "^3.0.0"
@@ -24,6 +24,6 @@
24
24
  },
25
25
  "pulumi": {
26
26
  "resource": true,
27
- "pluginDownloadURL": "https://github.com/checkly/pulumi-checkly/releases/download/v0.0.3"
27
+ "pluginDownloadURL": "https://github.com/checkly/pulumi-checkly/releases/download/v1.0.0"
28
28
  }
29
29
  }