3917 Commits

Author SHA1 Message Date
Sean Holung
65f989cfb5
add devops days landing page (#1666) 2022-07-06 13:13:51 -07:00
meagancojocar
5cf6f6e455
release notes 71 (#1623)
* release notes
2022-07-06 09:48:12 -07:00
susan evans
0ee01fffaf
removing confusing line about policy in aws get started guide (#1691) 2022-07-06 08:45:46 -07:00
Fraser Waters
f1ea5221f5
Add documentation about the github schema for pluginDownloadURL (#1683)
* Add documentation about the github schema for pluginDownloadURL

See https://github.com/pulumi/pulumi/pull/9984

* Update went out in v3.35.3
2022-07-06 08:34:12 +00:00
Christian Nunciato
e8b81e5b4f
Update some content on the TF page (#1698) 2022-07-02 03:20:12 +00:00
Adrian Smijulj
443bc92aa0
fix: update outdated GH links (#1695) 2022-07-01 23:16:16 +01:00
Christian Nunciato
3a9e0b8a3d
Add EKS Anywhere blog post (#1697)
* Add EKS Anywhere blog post

* Add a meta image

* Apply suggestions from code review

Co-authored-by: isaac-pulumi <59850911+isaac-pulumi@users.noreply.github.com>

Co-authored-by: isaac-pulumi <59850911+isaac-pulumi@users.noreply.github.com>
2022-07-01 16:59:49 -04:00
Kat Cosgrove
176cb98a6d
adds comparison chart and links (#1696) 2022-07-01 13:26:44 -07:00
Kat Cosgrove
bae0f1627d
Community Page (#1676)
* rough draft skeleton for community page

* updates copy + adds buttons

* adds newline to appease linter

* closing tags will be the death of me

* once again appeasing the linter

* changes youtube link directly to contribex playlist

* Wrestle the buttons

* adds community page to main nav

* formatting

Co-authored-by: Christian Nunciato <c@nunciato.org>
2022-07-01 12:37:07 -07:00
Zack Chase
0f2146b349
Update Oracle workshop link in blog (#1693) 2022-07-01 08:59:36 -04:00
Christian Nunciato
4a6ea7a319
Add Elkjøp post (#1648)
* Add Elkjøp post

* Update themes/default/content/blog/how-elkjop-nordic-enables-developers-to-self-serve-infrastructure/index.md

* add tags

* Update themes/default/content/blog/how-elkjop-nordic-enables-developers-to-self-serve-infrastructure/index.md

* Update themes/default/content/blog/how-elkjop-nordic-enables-developers-to-self-serve-infrastructure/index.md

* Update themes/default/content/blog/how-elkjop-nordic-enables-developers-to-self-serve-infrastructure/index.md

* Update themes/default/content/blog/how-elkjop-nordic-enables-developers-to-self-serve-infrastructure/index.md

* Update themes/default/content/blog/how-elkjop-nordic-enables-developers-to-self-serve-infrastructure/index.md

* Address feedback

* Update themes/default/content/blog/how-elkjop-nordic-enables-developers-to-self-serve-infrastructure/index.md

* Update index.md

Co-authored-by: George Huang <george@pulumi.com>
2022-06-30 17:22:52 -07:00
Ringo De Smet
3bba23a7fe
Name of environment variable was wrong in the example (#1689) 2022-06-30 06:23:33 -07:00
David Flanagan
84562425e7 fix: add extra helper for people using YAML and fetching a zone 2022-06-30 14:02:05 +01:00
David Flanagan
6c213e1e88 fix: add file names to all code blocks 2022-06-30 14:02:05 +01:00
David Flanagan
817cfa010e fix: linter 2022-06-30 14:02:05 +01:00
David Flanagan
99738aeeac feat: make cloudflare worker article multi-lang 2022-06-30 14:02:05 +01:00
Christian Nunciato
056b41e59e
Blog post: Shared config with AWS SSM (#1662) 2022-06-30 01:39:28 +00:00
David Flanagan
ac8cedb9bf fix: publish cloudflare worker article 2022-06-30 00:19:51 +01:00
David Flanagan
a961b27b36 fix: add relrefs 2022-06-30 00:19:51 +01:00
David Flanagan
e57bc31188 article: deploying a url shortener with cloudflare workers 2022-06-30 00:19:51 +01:00
Joe Duffy
a3fa087831
Add a blog post showing how to use Pulumi and Ansible together (#1670)
* Add a blog post showing how to use Pulumi and Ansible together

* Fix lint errors

Apparently pulumi convert likes to leave behind trailing
spaces for C# files! :-)

* Use consistent IP addresses

* Update links now that examples are live

* Apply suggestions from code review

Co-authored-by: Christian Nunciato <c@nunciato.org>

* Incorporate some suggestions

* Describe cattle vs pets

* Fix bare URLs

* Remove trailing slashes

Co-authored-by: Christian Nunciato <c@nunciato.org>
2022-06-29 16:19:02 -07:00
Sean Holung
71cd4548e9
add aws summit landing page (#1655) 2022-06-28 15:02:02 -07:00
Sean Holung
2088296562
fix hero casing (#1675) 2022-06-28 12:08:58 -07:00
Sean Holung
e64de802bb
getting started iac aws workshop (#1669) 2022-06-28 08:57:33 -07:00
Christian Nunciato
efea85064e
Update next-steps pages (#1667)
Co-authored-by: aaronkao <kao@pulumi.com>
2022-06-27 22:28:18 +00:00
Avi Flax @ Latacora
dfe968607a
unit testing guide: show how to set flag dryRun (#1642)
* Add PULUMI_TEST_MODE to guides/testing/unit

I was pulling my hair out trying to figure out why `pulumi.isDryRun`
was returning `false` when I was running my unit tests, given that
[the docs on the method][1] say:

> Note that we always consider executions in test mode to be
> “dry-runs”, since we will never actually carry out an update, and
> therefore certain output properties will never be resolved.

I’m still not sure if/where there is any canonical documentation on
“test mode” but I feel that it should probably always be enabled when
running unit tests. I’d prefer that there be a programmatic/imperative
way to enable it, e.g. `runtime.setDryRun(true)` or something similar,
but in lieu of that I feel the examples should include setting the env
var so as to plant seeds of awareness about this feature and how it
works.

[1]: https://www.pulumi.com/docs/reference/pkg/nodejs/pulumi/pulumi/runtime/#isDryRun

* Revert "Add PULUMI_TEST_MODE to guides/testing/unit"

f4adeec976811d64fe066b5084a9eeaf91b63814

As per discussion in pulumi/pulumi-hugo#1642

* guides/testing/unit: show how to set dryRun flag

Which, as per the discussion in pulumi/pulumi-hugo#1642, should
really/probably be renamed to `isPreview` or something along those
lines.

Anyway, it looks like the C# example already includes passing a value
for this flag, and I don’t know enough Go to add it to the Go example.

Now that I’m writing this commit message, the situation with `dryRun`
is confusing enough (especially given the docs on `runtime.isDryRun`)
that it could probably merit adding a small dedicated section to this
page. I’ll ask in the PR whether that’d be desirable.

* guides/testing/unit.md: better description of a flag

Co-authored-by: Ian Wahbe <ian@wahbe.com>

Co-authored-by: Ian Wahbe <ian@wahbe.com>
2022-06-27 10:44:02 -07:00
Zack Chase
36a96a7ba5
Update resources page with new workshops (#1607)
* Update past webinars

* Update and add new events

* Update oracle workshop

* Update lisitngs of previous webinars
2022-06-27 10:27:37 -07:00
Myles Haynes
9ee818f95c
Add Service Provider registry link to docs page (#1610)
* Add Service Provider registry link to docs page

* Fix relref

* Add description to pulumi service provider entry
2022-06-27 08:13:23 -07:00
Laura Santamaria
4dcc6cced8
feat(init): start pathway (#1631) 2022-06-24 12:00:50 -07:00
Anton Tayanovskyy
f634b5cbf1
Update links to the Java example that moved (#1659) 2022-06-24 13:29:04 -04:00
Robbie McKinstry
d6450d609d
Add warning to resource options docs (#1653)
(Some) resource options are ignored when applied
to component resources. This commit adds a warning
to the docs explaning this behavior.
2022-06-23 14:58:15 -04:00
Christian Nunciato
9c78f5c121
Add content to /migrate (#1651)
* Add content to /migrate
* Fix H5, use a different footer partial
2022-06-22 23:56:50 +00:00
susan evans
0bdfbdd85c
remove 503 links from ukraine blog (#1650) 2022-06-22 16:48:24 -07:00
Sean Holung
6c445e93ad
Add Getting Started w/ AWS IAC workshop (#1633) 2022-06-21 08:42:54 -07:00
Kat Cosgrove
de60787127
adds GKE and AKS glossary pages (#1636)
* adds GKE and AKS glossary pages

* Update themes/default/content/learn/glossary/gcp-gke.md

Co-authored-by: Christian Nunciato <c@nunciato.org>

* Update themes/default/content/learn/glossary/msft-aks.md

Co-authored-by: Christian Nunciato <c@nunciato.org>

Co-authored-by: Christian Nunciato <c@nunciato.org>
2022-06-21 15:30:13 +00:00
Matt Stratton
df05dfae32
Add Puluminaries page (#1621) 2022-06-17 16:26:58 -07:00
Myles Haynes
272e421e0e
Update stack readme example (#1640)
* fix stack readme example, render string instead of byte array

* add yaml example
2022-06-17 22:16:51 +00:00
Mikhail Shilkov
de513307f6
Change .NET Core to .NET is our docs prose (#1635) 2022-06-17 18:57:08 +02:00
Ian Wahbe
5d60e0c5e7
Document the schema for bulk imports (#1626)
* Document the bulk import schema

* fixup! Document the bulk import schema

* Fix links
2022-06-17 09:26:47 -07:00
David Flanagan
64ec5a75c0 fix: add youtube video embed 2022-06-17 15:20:28 +01:00
David Flanagan
2b91a478d4 fix: 160 char limit 2022-06-16 19:50:44 +01:00
David Flanagan
1138774808 fix: bump date 2022-06-16 19:50:44 +01:00
David Flanagan
30db2ae05a feat: add why section to drift article 2022-06-16 19:50:44 +01:00
David Flanagan
9db2a22b91 fix: schedule article for tomorrow 2022-06-16 19:50:44 +01:00
David Flanagan
bda8a4cf4f fix: add meta desc and fix font in image 2022-06-16 19:50:44 +01:00
David Flanagan
7dd041e100 fix: add meta image 2022-06-16 19:50:44 +01:00
David Flanagan
f544f15957 article: tips for drift detection 2022-06-16 19:50:44 +01:00
Paul Stack
037de45022
Fix aws apigateway reference in AWS Crosswalk post (#1629) 2022-06-16 21:34:10 +03:00
Mitch Gerdisch
28ffeb0e71
Mitchell gerdisch/correct awsx ecs examples (#1627) 2022-06-16 19:03:29 +03:00
Sean Holung
5cfc2000f0
update oracle workshop with external link (#1615) 2022-06-16 10:59:38 -04:00