Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions content/docs/iac/cli/environment-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,22 @@ menu:
aliases:
- /docs/reference/cli/environment-variables/
- /docs/cli/environment-variables/
search:
keywords:
- PULUMI_CONFIG_PASSPHRASE
- PULUMI_CONFIG_PASSPHRASE_FILE
- PULUMI_BACKEND_URL
- PULUMI_ACCESS_TOKEN
- PULUMI_HOME
- PULUMI_SKIP_UPDATE_CHECK
- PULUMI_PARALLEL
- PULUMI_STACK
- PULUMI_DEBUG_COMMANDS
- PULUMI_ENABLE_LEGACY_DIFF
- environment variables
- env vars
- pulumi env
boost: true
---

<dl class="tabular tabular-5-col break-words">
Expand Down
25 changes: 25 additions & 0 deletions scripts/search/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ module.exports = {
[".NET", "dotnet"],
["aws", "aws classic"],
["azure", "azure native"],
["aliyun", "alicloud"],
["azuread", "azure ad", "azure active directory"],
["c#", "csharp"],
["cfn", "cloudformation"],
Expand Down Expand Up @@ -129,6 +130,30 @@ module.exports = {
},
},

// Promote environment variables page for queries containing "PULUMI_"
{
objectID: "contains-pulumi-env",
enabled: true,
conditions: [
{
anchoring: "contains",
pattern: "PULUMI_",
alternatives: false,
}
],
consequence: {
filterPromotes: true,
promote: [
{
position: 0,
objectIDs: [
page.getObjectID({ href: "/docs/iac/cli/environment-variables/" }),
],
},
],
},
},

// When the query contains "awsx" and the section is Registry, return AWSx, API Gateway, and EKS as the top results.
{
objectID: "contains-awsx-and-is-registry",
Expand Down
Loading