Skip to content

Commit

Permalink
Update _index.md
Browse files Browse the repository at this point in the history
  • Loading branch information
cnunciato authored Mar 13, 2024
1 parent 6ddb237 commit 40cf9dd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/_index.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
title: Control Plane (cpln)
meta_desc: Provides an overview of the Control Plane (cpln) Provider for Pulumi.
layout: overview
layout: package
---

The Control Plane (cpln) pulumi provider enables the scaffolding of any Control Plane(https://controlplane.com/) object as cose. It enables infrastructure as code with all the added benefit of the global virtual cloud (GVC). You can build your VPCs, subnets, databases, queues, caches, etc. and overlay them with a multi-cloud/multi-region universal compute workloads that span regions and clouds. Nearly everything you can do using the Control Plane CLI, UI or API is available using Pulumi.
The Control Plane (cpln) Pulumi provider enables the scaffolding of any Control Plane (https://controlplane.com/) object as code. It enables infrastructure as code with all the added benefit of the global virtual cloud (GVC). You can build your VPCs, subnets, databases, queues, caches, etc., and overlay them with a multi-cloud/multi-region universal compute workloads that span regions and clouds. Nearly everything you can do using the Control Plane CLI, UI or API is available using Pulumi.

## Example

Expand All @@ -15,7 +15,7 @@ The Control Plane (cpln) pulumi provider enables the scaffolding of any Control
import * as cpln from "@pulumiverse/cpln";

const location = new cpln.Location("example", {
name: "aws-us-west-2"
name: "aws-us-west-2"
});
```

Expand Down Expand Up @@ -44,7 +44,7 @@ func main() {
pulumi.Run(func(ctx *pulumi.Context) error {

location, err := cpln.NewLocation(ctx, "example", &cpln.LocationArgs{
Name: pulumi.String("aws-us-west-2"),
Name: pulumi.String("aws-us-west-2"),
})
if err != nil {
return fmt.Errorf("error creating location: %v", err)
Expand Down Expand Up @@ -77,4 +77,4 @@ class cpln : Stack

{{% /choosable %}}

{{< /chooser >}}
{{< /chooser >}}

0 comments on commit 40cf9dd

Please sign in to comment.