Skip to content

Commit

Permalink
Merge branch 'master' into thoward/aws-ts-static-web/bump-version-of-…
Browse files Browse the repository at this point in the history
…synced-folder
  • Loading branch information
thoward committed Oct 17, 2024
2 parents 9c3855d + a63cbd1 commit cbca0dc
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion generator/generate-go-mod.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ fetch_latest_version() {

PULUMI_VERSION="$(fetch_latest_version pulumi)"

PROVIDER_LIST="aiven,alicloud,auth0,aws,aws-native,azure,azure-classic,civo,digitalocean,equinix-metal,gcp,google-native,kubernetes,linode,oci,openstack"
PROVIDER_LIST="aiven,alicloud,auth0,aws,azure,azure-classic,civo,digitalocean,equinix-metal,gcp,google-native,kubernetes,linode,oci,openstack"
IFS=',' read -ra PROVIDERS <<<"$PROVIDER_LIST"

for i in "${PROVIDERS[@]}"; do
Expand Down
2 changes: 1 addition & 1 deletion github-go/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ func main() {
return err
}

ctx.Export("repository", repository.Name)
ctx.Export("repositoryName", repository.Name)
return nil
})
}
2 changes: 1 addition & 1 deletion github-javascript/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ const repo = new github.Repository("demo-repo", {
description: "Demo Repository for GitHub",
});

exports.repo = repo.name
exports.repositoryName = repo.name
2 changes: 1 addition & 1 deletion github-python/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
repository = github.Repository('demo-repo', description="Demo Repository for GitHub")

# Export the Name of the repository
pulumi.export('name', repository.name)
pulumi.export('repositoryName', repository.name)
2 changes: 1 addition & 1 deletion github-typescript/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ const repo = new github.Repository("demo-repo", {
description: "Demo Repository for GitHub",
});

export const clusterName = repo.name
export const repositoryName = repo.name
2 changes: 1 addition & 1 deletion github-yaml/Pulumi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ resources:
description: Demo Repository for GitHub

outputs:
clusterName: ${repo.name}
repositoryName: ${repo.name}

0 comments on commit cbca0dc

Please sign in to comment.