Skip to content

Commit 4ba3cc4

Browse files
committed
Fix dotnet build
1 parent 8070bd0 commit 4ba3cc4

File tree

7 files changed

+36
-31
lines changed

7 files changed

+36
-31
lines changed

docs/_index.md

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,13 @@
11
---
22
title: Statsig Provider
33
meta_desc: Provides an overview on how to configure the Pulumi Statsig provider.
4-
layout: package
4+
layout: overview
55
---
66

7-
## Installation
8-
9-
The Statsig provider is available as a package in the following Pulumi languages:
10-
11-
* JavaScript/TypeScript: [`@statsig/pulumi-statsig`](https://www.npmjs.com/package/@statsig/pulumi-statsig)
12-
* Python: [`pulumi-statsig`](https://pypi.org/project/pulumi-statsig/)
13-
* Go: [`github.com/statsig-io/pulumi-statsig/sdk/go/statsig`](https://github.com/statsig-io/pulumi-statsig)
14-
* .NET: [`Pulumi.Statsig`](https://www.nuget.org/packages/Pulumi.Statsig)
15-
16-
## Overview
17-
187
The Statsig provider is used to interact with resources supported by
198
Statsig. The provider needs to be configured with the proper credentials
209
before it can be used.
10+
2111
## Example Usage
2212

2313
{{< chooser language "typescript,python,go,csharp" >}}
@@ -53,7 +43,7 @@ config:
5343
import pulumi
5444
import pulumi_statsig as statsig
5545

56-
# Create a DNS record
46+
# Create a Feature Gate
5747
gate = statsig.Gate("my-gate")
5848
```
5949
{{% /choosable %}}
@@ -71,7 +61,7 @@ config:
7161
using System.Collections.Generic;
7262
using System.Linq;
7363
using Pulumi;
74-
using Statsig = Pulumi.Statsig;
64+
using Statsig = Statsig.Pulumi;
7565

7666
return await Deployment.RunAsync(() =>
7767
{
@@ -113,6 +103,3 @@ func main() {
113103
```
114104
{{% /choosable %}}
115105
{{< /chooser >}}
116-
## Configuration Reference
117-
118-
- `consoleApiKey` (String) The Statsig Console API key retrieved from Statsig console.

docs/installation-configuration.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
title: Statsig Provider Installation & Configuration
3+
meta_desc: How to install and configure the Statsig provider.
4+
layout: installation
5+
---
6+
7+
## Installation
8+
9+
The Statsig provider is available as a package in the following Pulumi languages:
10+
11+
* JavaScript/TypeScript: [`@statsig/pulumi-statsig`](https://www.npmjs.com/package/@statsig/pulumi-statsig)
12+
* Python: [`pulumi-statsig`](https://pypi.org/project/pulumi-statsig/)
13+
* Go: [`github.com/statsig-io/pulumi-statsig/sdk/go/statsig`](https://github.com/statsig-io/pulumi-statsig)
14+
* .NET: [`Statsig.Pulumi`](https://www.nuget.org/packages/Statsig.Pulumi)
15+
16+
## Configuration Reference
17+
18+
- `consoleApiKey` (String) The Statsig Console API key retrieved from Statsig console.

examples/examples_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ func getCSBaseOptions(t *testing.T) integration.ProgramTestOptions {
6464
base := getBaseOptions(t)
6565
baseJS := base.With(integration.ProgramTestOptions{
6666
Dependencies: []string{
67-
"Pulumi.Statsig",
67+
"Statsig.Pulumi",
6868
},
6969
})
7070

provider/cmd/pulumi-resource-statsig/schema.json

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

provider/resources.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ func Provider() tfbridge.ProviderInfo {
6363
//
6464
// You may host a logo on a domain you control or add an PNG logo (100x100) for your package
6565
// in your repository and use the raw content URL for that file as your logo URL.
66-
LogoURL: "https://statsig.com/images/statsig_full.svg",
66+
LogoURL: "https://statsig-aws-marketplace-asset.s3.us-west-1.amazonaws.com/statsig-logo.png",
6767
// PluginDownloadURL is an optional URL used to download the Provider
6868
// for use in Pulumi programs
6969
// e.g. https://github.com/org/pulumi-provider-name/releases/download/v${VERSION}/

sdk/dotnet/Keys.cs

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

sdk/dotnet/logo.png

18 KB
Loading

0 commit comments

Comments
 (0)