Skip to content

Commit 1b5f161

Browse files
authored
Merge pull request #1 from stackql/feature/provider-dev
linode provider update
2 parents 29d5b28 + 26a6acf commit 1b5f161

417 files changed

Lines changed: 619894 additions & 47304 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
File renamed without changes.
File renamed without changes.

README.md

Lines changed: 130 additions & 185 deletions
Large diffs are not rendered by default.

package-lock.json

Lines changed: 527 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
},
1616
"dependencies": {
1717
"@stackql/pgwire-lite": "^1.0.1",
18-
"@stackql/provider-utils": "^0.4.4"
18+
"@stackql/provider-utils": "^0.4.5"
1919
},
2020
"keywords": [
2121
"stackql",

provider-dev/config/.gitkeep

Whitespace-only changes.

provider-dev/config/all_services.csv

Lines changed: 426 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
---
2-
title: REPLACEME
2+
title: linode
33
hide_title: false
44
hide_table_of_contents: false
55
keywords:
6-
- REPLACEME
6+
- linode
77
- stackql
88
- infrastructure-as-code
99
- configuration-as-data
1010
- cloud inventory
11-
description: Query, deploy and manage REPLACEME resources using SQL
11+
description: Query, deploy and manage Linode resources using SQL
1212
custom_edit_url: null
13-
image: /img/stackql-REPLACEME-provider-featured-image.png
13+
image: /img/stackql-linode-provider-featured-image.png
1414
id: 'provider-intro'
1515
---
1616

1717
import CopyableCode from '@site/src/components/CopyableCode/CopyableCode';
1818

19-
REPLACEME with description for the provider.
19+
Cloud hosting platform that provides virtual private servers, Kubernetes, managed databases, and other cloud infrastructure services.

provider-dev/docgen/provider-data/headerContent2.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ See also:
44

55
## Installation
66

7-
To pull the latest version of the `REPLACEME` provider, run the following command:
7+
To pull the latest version of the `linode` provider, run the following command:
88

99
```bash
10-
REGISTRY PULL REPLACEME;
10+
REGISTRY PULL linode;
1111
```
1212
> To view previous provider versions or to pull a specific provider version, see [here](https://stackql.io/docs/language-spec/registry).
1313

1414
## Authentication
1515

1616
The following system environment variables are used for authentication by default:
1717

18-
- <CopyableCode code="REPLACEME" /> - REPLACEME API token (see <a href="REPLACEME>How to Create a Personal Access Token</a>)
18+
- <CopyableCode code="LINODE_TOKEN" /> - Linode API token (see <a href="https://www.linode.com/docs/products/tools/api/guides/manage-api-tokens/#create-an-api-token">How to Create a Linode API Token</a>)
1919

2020
These variables are sourced at runtime (from the local machine or as CI variables/secrets).
2121

@@ -27,15 +27,15 @@ To use different environment variables (instead of the defaults), use the `--aut
2727

2828
```bash
2929

30-
AUTH='{ "REPLACEME": { "type": "bearer", "credentialsenvvar": "REPLACEME" }}'
30+
AUTH='{ "linode": { "type": "bearer", "credentialsenvvar": "YOUR_LINODE_TOKEN_VAR" }}'
3131
stackql shell --auth="${AUTH}"
3232

3333
```
3434
or using PowerShell:
3535

3636
```powershell
3737

38-
$Auth = "{ 'REPLACEME': { 'type': 'bearer', 'credentialsenvvar': 'REPLACEME' }}"
38+
$Auth = "{ 'linode': { 'type': 'bearer', 'credentialsenvvar': 'YOUR_LINODE_TOKEN_VAR' }}"
3939
stackql.exe shell --auth=$Auth
4040

4141
```

provider-dev/downloaded/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)