@@ -30,21 +30,27 @@ Build Oracle Cloud infrastructure using familiar TypeScript syntax and tooling.
30
30
{{< chooser os "macos,linux,windows" / >}}
31
31
32
32
{{% choosable os macos %}}
33
+
33
34
``` bash
34
35
brew install pulumi/tap/pulumi
35
36
```
37
+
36
38
{{% /choosable %}}
37
39
38
40
{{% choosable os linux %}}
41
+
39
42
``` bash
40
43
curl -fsSL https://get.pulumi.com | sh
41
44
```
45
+
42
46
{{% /choosable %}}
43
47
44
48
{{% choosable os windows %}}
49
+
45
50
``` powershell
46
51
Invoke-WebRequest -Uri "https://get.pulumi.com/install.ps1" -OutFile install.ps1; .\install.ps1
47
52
```
53
+
48
54
{{% /choosable %}}
49
55
50
56
### Configure OCI Access
@@ -62,6 +68,7 @@ oci setup config
62
68
```
63
69
64
70
This will prompt for:
71
+
65
72
- User OCID: ` ocid1.user.oc1..xxxxx `
66
73
- Tenancy OCID: ` ocid1.tenancy.oc1..xxxxx `
67
74
- Region: ` us-ashburn-1 `
@@ -151,6 +158,7 @@ pulumi up
151
158
```
152
159
153
160
This command:
161
+
154
162
1 . Shows a preview of resources to be created
155
163
2 . Asks for your confirmation
156
164
3 . Creates the VCN and bucket in OCI
@@ -183,21 +191,27 @@ Build Oracle Cloud infrastructure using familiar Python syntax and tooling.
183
191
{{< chooser os "macos,linux,windows" / >}}
184
192
185
193
{{% choosable os macos %}}
194
+
186
195
``` bash
187
196
brew install pulumi/tap/pulumi
188
197
```
198
+
189
199
{{% /choosable %}}
190
200
191
201
{{% choosable os linux %}}
202
+
192
203
``` bash
193
204
curl -fsSL https://get.pulumi.com | sh
194
205
```
206
+
195
207
{{% /choosable %}}
196
208
197
209
{{% choosable os windows %}}
210
+
198
211
``` powershell
199
212
Invoke-WebRequest -Uri "https://get.pulumi.com/install.ps1" -OutFile install.ps1; .\install.ps1
200
213
```
214
+
201
215
{{% /choosable %}}
202
216
203
217
### Configure OCI Access
@@ -215,6 +229,7 @@ oci setup config
215
229
```
216
230
217
231
This will prompt for:
232
+
218
233
- User OCID: ` ocid1.user.oc1..xxxxx `
219
234
- Tenancy OCID: ` ocid1.tenancy.oc1..xxxxx `
220
235
- Region: ` us-ashburn-1 `
@@ -310,6 +325,7 @@ pulumi up
310
325
```
311
326
312
327
This command:
328
+
313
329
1 . Shows a preview of resources to be created
314
330
2 . Asks for your confirmation
315
331
3 . Creates the VCN and bucket in OCI
@@ -342,21 +358,27 @@ Build Oracle Cloud infrastructure using Go's type safety and performance.
342
358
{{< chooser os "macos,linux,windows" / >}}
343
359
344
360
{{% choosable os macos %}}
361
+
345
362
``` bash
346
363
brew install pulumi/tap/pulumi
347
364
```
365
+
348
366
{{% /choosable %}}
349
367
350
368
{{% choosable os linux %}}
369
+
351
370
``` bash
352
371
curl -fsSL https://get.pulumi.com | sh
353
372
```
373
+
354
374
{{% /choosable %}}
355
375
356
376
{{% choosable os windows %}}
377
+
357
378
``` powershell
358
379
Invoke-WebRequest -Uri "https://get.pulumi.com/install.ps1" -OutFile install.ps1; .\install.ps1
359
380
```
381
+
360
382
{{% /choosable %}}
361
383
362
384
### Configure OCI Access
@@ -374,6 +396,7 @@ oci setup config
374
396
```
375
397
376
398
This will prompt for:
399
+
377
400
- User OCID: ` ocid1.user.oc1..xxxxx `
378
401
- Tenancy OCID: ` ocid1.tenancy.oc1..xxxxx `
379
402
- Region: ` us-ashburn-1 `
@@ -416,7 +439,7 @@ package main
416
439
import (
417
440
" fmt"
418
441
" time"
419
-
442
+
420
443
" github.com/pulumi/pulumi-oci/sdk/v2/go/oci/core"
421
444
" github.com/pulumi/pulumi-oci/sdk/v2/go/oci/objectstorage"
422
445
" github.com/pulumi/pulumi/sdk/v3/go/pulumi"
@@ -495,6 +518,7 @@ pulumi up
495
518
```
496
519
497
520
This command:
521
+
498
522
1 . Shows a preview of resources to be created
499
523
2 . Asks for your confirmation
500
524
3 . Creates the VCN and bucket in OCI
@@ -527,21 +551,27 @@ Build Oracle Cloud infrastructure using C# and .NET ecosystem.
527
551
{{< chooser os "macos,linux,windows" / >}}
528
552
529
553
{{% choosable os macos %}}
554
+
530
555
``` bash
531
556
brew install pulumi/tap/pulumi
532
557
```
558
+
533
559
{{% /choosable %}}
534
560
535
561
{{% choosable os linux %}}
562
+
536
563
``` bash
537
564
curl -fsSL https://get.pulumi.com | sh
538
565
```
566
+
539
567
{{% /choosable %}}
540
568
541
569
{{% choosable os windows %}}
570
+
542
571
``` powershell
543
572
Invoke-WebRequest -Uri "https://get.pulumi.com/install.ps1" -OutFile install.ps1; .\install.ps1
544
573
```
574
+
545
575
{{% /choosable %}}
546
576
547
577
### Configure OCI Access
@@ -559,6 +589,7 @@ oci setup config
559
589
```
560
590
561
591
This will prompt for:
592
+
562
593
- User OCID: ` ocid1.user.oc1..xxxxx `
563
594
- Tenancy OCID: ` ocid1.tenancy.oc1..xxxxx `
564
595
- Region: ` us-ashburn-1 `
@@ -680,6 +711,7 @@ pulumi up
680
711
```
681
712
682
713
This command:
714
+
683
715
1 . Shows a preview of resources to be created
684
716
2 . Asks for your confirmation
685
717
3 . Creates the VCN and bucket in OCI
@@ -713,21 +745,27 @@ Build Oracle Cloud infrastructure using Java and familiar build tools.
713
745
{{< chooser os "macos,linux,windows" / >}}
714
746
715
747
{{% choosable os macos %}}
748
+
716
749
``` bash
717
750
brew install pulumi/tap/pulumi
718
751
```
752
+
719
753
{{% /choosable %}}
720
754
721
755
{{% choosable os linux %}}
756
+
722
757
``` bash
723
758
curl -fsSL https://get.pulumi.com | sh
724
759
```
760
+
725
761
{{% /choosable %}}
726
762
727
763
{{% choosable os windows %}}
764
+
728
765
``` powershell
729
766
Invoke-WebRequest -Uri "https://get.pulumi.com/install.ps1" -OutFile install.ps1; .\install.ps1
730
767
```
768
+
731
769
{{% /choosable %}}
732
770
733
771
### Configure OCI Access
@@ -745,6 +783,7 @@ oci setup config
745
783
```
746
784
747
785
This will prompt for:
786
+
748
787
- User OCID: ` ocid1.user.oc1..xxxxx `
749
788
- Tenancy OCID: ` ocid1.tenancy.oc1..xxxxx `
750
789
- Region: ` us-ashburn-1 `
@@ -860,6 +899,7 @@ pulumi up
860
899
```
861
900
862
901
This command:
902
+
863
903
1 . Shows a preview of resources to be created
864
904
2 . Asks for your confirmation
865
905
3 . Creates the VCN and bucket in OCI
@@ -891,21 +931,27 @@ Define Oracle Cloud infrastructure using simple, declarative YAML configuration.
891
931
{{< chooser os "macos,linux,windows" / >}}
892
932
893
933
{{% choosable os macos %}}
934
+
894
935
``` bash
895
936
brew install pulumi/tap/pulumi
896
937
```
938
+
897
939
{{% /choosable %}}
898
940
899
941
{{% choosable os linux %}}
942
+
900
943
``` bash
901
944
curl -fsSL https://get.pulumi.com | sh
902
945
```
946
+
903
947
{{% /choosable %}}
904
948
905
949
{{% choosable os windows %}}
950
+
906
951
``` powershell
907
952
Invoke-WebRequest -Uri "https://get.pulumi.com/install.ps1" -OutFile install.ps1; .\install.ps1
908
953
```
954
+
909
955
{{% /choosable %}}
910
956
911
957
### Configure OCI Access
@@ -923,6 +969,7 @@ oci setup config
923
969
```
924
970
925
971
This will prompt for:
972
+
926
973
- User OCID: ` ocid1.user.oc1..xxxxx `
927
974
- Tenancy OCID: ` ocid1.tenancy.oc1..xxxxx `
928
975
- Region: ` us-ashburn-1 `
@@ -1034,4 +1081,4 @@ pulumi up
1034
1081
- [ Browse OCI YAML Examples →] ( https://github.com/pulumi/examples#oracle-cloud-infrastructure )
1035
1082
- [ Learn Pulumi YAML Concepts →] ( /docs/iac/concepts/languages/yaml/ )
1036
1083
1037
- {{% /choosable %}}
1084
+ {{% /choosable %}}
0 commit comments