Skip to content

Commit 4e51eb6

Browse files
committed
Fix markdown linting issues in OCI files
1 parent 06650c7 commit 4e51eb6

File tree

3 files changed

+88
-17
lines changed

3 files changed

+88
-17
lines changed

content/start-now-1/oci/_index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ oci setup config
7171
```
7272

7373
This will prompt you for:
74+
7475
- User OCID
7576
- Tenancy OCID
7677
- Region
@@ -519,4 +520,4 @@ pulumi up
519520
Understand stacks, state, configuration, and more
520521

521522
- [**Join the community →**](https://slack.pulumi.com)
522-
Get help and share knowledge with other Pulumi users
523+
Get help and share knowledge with other Pulumi users

content/start-now-2/oci/_index.md

Lines changed: 49 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,21 +30,27 @@ Build Oracle Cloud infrastructure using familiar TypeScript syntax and tooling.
3030
{{< chooser os "macos,linux,windows" / >}}
3131

3232
{{% choosable os macos %}}
33+
3334
```bash
3435
brew install pulumi/tap/pulumi
3536
```
37+
3638
{{% /choosable %}}
3739

3840
{{% choosable os linux %}}
41+
3942
```bash
4043
curl -fsSL https://get.pulumi.com | sh
4144
```
45+
4246
{{% /choosable %}}
4347

4448
{{% choosable os windows %}}
49+
4550
```powershell
4651
Invoke-WebRequest -Uri "https://get.pulumi.com/install.ps1" -OutFile install.ps1; .\install.ps1
4752
```
53+
4854
{{% /choosable %}}
4955

5056
### Configure OCI Access
@@ -62,6 +68,7 @@ oci setup config
6268
```
6369

6470
This will prompt for:
71+
6572
- User OCID: `ocid1.user.oc1..xxxxx`
6673
- Tenancy OCID: `ocid1.tenancy.oc1..xxxxx`
6774
- Region: `us-ashburn-1`
@@ -151,6 +158,7 @@ pulumi up
151158
```
152159

153160
This command:
161+
154162
1. Shows a preview of resources to be created
155163
2. Asks for your confirmation
156164
3. Creates the VCN and bucket in OCI
@@ -183,21 +191,27 @@ Build Oracle Cloud infrastructure using familiar Python syntax and tooling.
183191
{{< chooser os "macos,linux,windows" / >}}
184192

185193
{{% choosable os macos %}}
194+
186195
```bash
187196
brew install pulumi/tap/pulumi
188197
```
198+
189199
{{% /choosable %}}
190200

191201
{{% choosable os linux %}}
202+
192203
```bash
193204
curl -fsSL https://get.pulumi.com | sh
194205
```
206+
195207
{{% /choosable %}}
196208

197209
{{% choosable os windows %}}
210+
198211
```powershell
199212
Invoke-WebRequest -Uri "https://get.pulumi.com/install.ps1" -OutFile install.ps1; .\install.ps1
200213
```
214+
201215
{{% /choosable %}}
202216

203217
### Configure OCI Access
@@ -215,6 +229,7 @@ oci setup config
215229
```
216230

217231
This will prompt for:
232+
218233
- User OCID: `ocid1.user.oc1..xxxxx`
219234
- Tenancy OCID: `ocid1.tenancy.oc1..xxxxx`
220235
- Region: `us-ashburn-1`
@@ -310,6 +325,7 @@ pulumi up
310325
```
311326

312327
This command:
328+
313329
1. Shows a preview of resources to be created
314330
2. Asks for your confirmation
315331
3. Creates the VCN and bucket in OCI
@@ -342,21 +358,27 @@ Build Oracle Cloud infrastructure using Go's type safety and performance.
342358
{{< chooser os "macos,linux,windows" / >}}
343359

344360
{{% choosable os macos %}}
361+
345362
```bash
346363
brew install pulumi/tap/pulumi
347364
```
365+
348366
{{% /choosable %}}
349367

350368
{{% choosable os linux %}}
369+
351370
```bash
352371
curl -fsSL https://get.pulumi.com | sh
353372
```
373+
354374
{{% /choosable %}}
355375

356376
{{% choosable os windows %}}
377+
357378
```powershell
358379
Invoke-WebRequest -Uri "https://get.pulumi.com/install.ps1" -OutFile install.ps1; .\install.ps1
359380
```
381+
360382
{{% /choosable %}}
361383

362384
### Configure OCI Access
@@ -374,6 +396,7 @@ oci setup config
374396
```
375397

376398
This will prompt for:
399+
377400
- User OCID: `ocid1.user.oc1..xxxxx`
378401
- Tenancy OCID: `ocid1.tenancy.oc1..xxxxx`
379402
- Region: `us-ashburn-1`
@@ -416,7 +439,7 @@ package main
416439
import (
417440
"fmt"
418441
"time"
419-
442+
420443
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/core"
421444
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/objectstorage"
422445
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
@@ -495,6 +518,7 @@ pulumi up
495518
```
496519

497520
This command:
521+
498522
1. Shows a preview of resources to be created
499523
2. Asks for your confirmation
500524
3. Creates the VCN and bucket in OCI
@@ -527,21 +551,27 @@ Build Oracle Cloud infrastructure using C# and .NET ecosystem.
527551
{{< chooser os "macos,linux,windows" / >}}
528552

529553
{{% choosable os macos %}}
554+
530555
```bash
531556
brew install pulumi/tap/pulumi
532557
```
558+
533559
{{% /choosable %}}
534560

535561
{{% choosable os linux %}}
562+
536563
```bash
537564
curl -fsSL https://get.pulumi.com | sh
538565
```
566+
539567
{{% /choosable %}}
540568

541569
{{% choosable os windows %}}
570+
542571
```powershell
543572
Invoke-WebRequest -Uri "https://get.pulumi.com/install.ps1" -OutFile install.ps1; .\install.ps1
544573
```
574+
545575
{{% /choosable %}}
546576

547577
### Configure OCI Access
@@ -559,6 +589,7 @@ oci setup config
559589
```
560590

561591
This will prompt for:
592+
562593
- User OCID: `ocid1.user.oc1..xxxxx`
563594
- Tenancy OCID: `ocid1.tenancy.oc1..xxxxx`
564595
- Region: `us-ashburn-1`
@@ -680,6 +711,7 @@ pulumi up
680711
```
681712

682713
This command:
714+
683715
1. Shows a preview of resources to be created
684716
2. Asks for your confirmation
685717
3. Creates the VCN and bucket in OCI
@@ -713,21 +745,27 @@ Build Oracle Cloud infrastructure using Java and familiar build tools.
713745
{{< chooser os "macos,linux,windows" / >}}
714746

715747
{{% choosable os macos %}}
748+
716749
```bash
717750
brew install pulumi/tap/pulumi
718751
```
752+
719753
{{% /choosable %}}
720754

721755
{{% choosable os linux %}}
756+
722757
```bash
723758
curl -fsSL https://get.pulumi.com | sh
724759
```
760+
725761
{{% /choosable %}}
726762

727763
{{% choosable os windows %}}
764+
728765
```powershell
729766
Invoke-WebRequest -Uri "https://get.pulumi.com/install.ps1" -OutFile install.ps1; .\install.ps1
730767
```
768+
731769
{{% /choosable %}}
732770

733771
### Configure OCI Access
@@ -745,6 +783,7 @@ oci setup config
745783
```
746784

747785
This will prompt for:
786+
748787
- User OCID: `ocid1.user.oc1..xxxxx`
749788
- Tenancy OCID: `ocid1.tenancy.oc1..xxxxx`
750789
- Region: `us-ashburn-1`
@@ -860,6 +899,7 @@ pulumi up
860899
```
861900

862901
This command:
902+
863903
1. Shows a preview of resources to be created
864904
2. Asks for your confirmation
865905
3. Creates the VCN and bucket in OCI
@@ -891,21 +931,27 @@ Define Oracle Cloud infrastructure using simple, declarative YAML configuration.
891931
{{< chooser os "macos,linux,windows" / >}}
892932

893933
{{% choosable os macos %}}
934+
894935
```bash
895936
brew install pulumi/tap/pulumi
896937
```
938+
897939
{{% /choosable %}}
898940

899941
{{% choosable os linux %}}
942+
900943
```bash
901944
curl -fsSL https://get.pulumi.com | sh
902945
```
946+
903947
{{% /choosable %}}
904948

905949
{{% choosable os windows %}}
950+
906951
```powershell
907952
Invoke-WebRequest -Uri "https://get.pulumi.com/install.ps1" -OutFile install.ps1; .\install.ps1
908953
```
954+
909955
{{% /choosable %}}
910956

911957
### Configure OCI Access
@@ -923,6 +969,7 @@ oci setup config
923969
```
924970

925971
This will prompt for:
972+
926973
- User OCID: `ocid1.user.oc1..xxxxx`
927974
- Tenancy OCID: `ocid1.tenancy.oc1..xxxxx`
928975
- Region: `us-ashburn-1`
@@ -1034,4 +1081,4 @@ pulumi up
10341081
- [Browse OCI YAML Examples →](https://github.com/pulumi/examples#oracle-cloud-infrastructure)
10351082
- [Learn Pulumi YAML Concepts →](/docs/iac/concepts/languages/yaml/)
10361083

1037-
{{% /choosable %}}
1084+
{{% /choosable %}}

0 commit comments

Comments
 (0)