-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump go.mod versions for pulumi, update master, and exclude failing c…
…onformance tests This will hopefully be the last time this needs to be done manually before Renovate bot handles bumping.
- Loading branch information
1 parent
cbdec7a
commit 2060a58
Showing
29 changed files
with
247 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
cmd/pulumi-language-yaml/testdata/projects/l1-keyword-overlap/Main.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
variables: | ||
# Keywords in various languages should be renamed and work. | ||
class: class_output_string | ||
export: export_output_string | ||
import: import_output_string | ||
mod: mod_output_string | ||
object: | ||
object: object_output_string | ||
self: self_output_string | ||
this: this_output_string | ||
if: if_output_string | ||
outputs: | ||
class: ${class} | ||
export: ${export} | ||
import: ${import} | ||
mod: ${mod} | ||
object: ${object} | ||
self: ${self} | ||
this: ${this} | ||
if: ${if} |
2 changes: 2 additions & 0 deletions
2
cmd/pulumi-language-yaml/testdata/projects/l1-keyword-overlap/Pulumi.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
name: l1-keyword-overlap | ||
runtime: yaml |
17 changes: 17 additions & 0 deletions
17
cmd/pulumi-language-yaml/testdata/projects/l2-component-component-resource-ref/Main.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
resources: | ||
component1: | ||
type: component:ComponentCustomRefOutput | ||
properties: | ||
value: foo-bar-baz | ||
component2: | ||
type: component:ComponentCustomRefInputOutput | ||
properties: | ||
inputRef: ${component1.ref} | ||
custom1: | ||
type: component:Custom | ||
properties: | ||
value: ${component2.inputRef.value} | ||
custom2: | ||
type: component:Custom | ||
properties: | ||
value: ${component2.outputRef.value} |
2 changes: 2 additions & 0 deletions
2
cmd/pulumi-language-yaml/testdata/projects/l2-component-component-resource-ref/Pulumi.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
name: l2-component-component-resource-ref | ||
runtime: yaml |
3 changes: 3 additions & 0 deletions
3
...i-language-yaml/testdata/projects/l2-component-component-resource-ref/sdks/component.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
packageDeclarationVersion: 1 | ||
name: component | ||
version: 13.3.7 |
13 changes: 13 additions & 0 deletions
13
cmd/pulumi-language-yaml/testdata/projects/l2-component-program-resource-ref/Main.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
resources: | ||
component1: | ||
type: component:ComponentCustomRefOutput | ||
properties: | ||
value: foo-bar-baz | ||
custom1: | ||
type: component:Custom | ||
properties: | ||
value: ${component1.value} | ||
custom2: | ||
type: component:Custom | ||
properties: | ||
value: ${component1.ref.value} |
2 changes: 2 additions & 0 deletions
2
cmd/pulumi-language-yaml/testdata/projects/l2-component-program-resource-ref/Pulumi.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
name: l2-component-program-resource-ref | ||
runtime: yaml |
3 changes: 3 additions & 0 deletions
3
...umi-language-yaml/testdata/projects/l2-component-program-resource-ref/sdks/component.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
packageDeclarationVersion: 1 | ||
name: component | ||
version: 13.3.7 |
12 changes: 12 additions & 0 deletions
12
cmd/pulumi-language-yaml/testdata/projects/l2-resource-invoke-dynamic-function/Main.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
variables: | ||
localValue: hello | ||
outputs: | ||
dynamic: | ||
fn::invoke: | ||
function: any-type-function:dynListToDyn | ||
arguments: | ||
inputs: | ||
- hello | ||
- ${localValue} | ||
- {} | ||
return: result |
2 changes: 2 additions & 0 deletions
2
cmd/pulumi-language-yaml/testdata/projects/l2-resource-invoke-dynamic-function/Pulumi.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
name: l2-resource-invoke-dynamic-function | ||
runtime: yaml |
3 changes: 3 additions & 0 deletions
3
...ge-yaml/testdata/projects/l2-resource-invoke-dynamic-function/sdks/any-type-function.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
packageDeclarationVersion: 1 | ||
name: any-type-function | ||
version: 15.0.0 |
44 changes: 44 additions & 0 deletions
44
cmd/pulumi-language-yaml/testdata/projects/l2-resource-keyword-overlap/Main.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
resources: | ||
class: | ||
type: simple:Resource | ||
properties: | ||
value: true | ||
export: | ||
type: simple:Resource | ||
properties: | ||
value: true | ||
mod: | ||
type: simple:Resource | ||
properties: | ||
value: true | ||
import: # TODO(pulumi/pulumi#18246): Pcl should support scoping based on resource type just like HCL does in TF so we can uncomment this. | ||
# output "import" { | ||
# value = Resource["import"] | ||
# } | ||
type: simple:Resource | ||
properties: | ||
value: true | ||
object: | ||
type: simple:Resource | ||
properties: | ||
value: true | ||
self: | ||
type: simple:Resource | ||
properties: | ||
value: true | ||
this: | ||
type: simple:Resource | ||
properties: | ||
value: true | ||
if: | ||
type: simple:Resource | ||
properties: | ||
value: true | ||
outputs: | ||
class: ${class} | ||
export: ${export} | ||
mod: ${mod} | ||
object: ${object} | ||
self: ${self} | ||
this: ${this} | ||
if: ${if} |
2 changes: 2 additions & 0 deletions
2
cmd/pulumi-language-yaml/testdata/projects/l2-resource-keyword-overlap/Pulumi.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
name: l2-resource-keyword-overlap | ||
runtime: yaml |
3 changes: 3 additions & 0 deletions
3
cmd/pulumi-language-yaml/testdata/projects/l2-resource-keyword-overlap/sdks/simple.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
packageDeclarationVersion: 1 | ||
name: simple | ||
version: 2.0.0 |
14 changes: 14 additions & 0 deletions
14
cmd/pulumi-language-yaml/testdata/projects/l2-resource-option-deleted-with/Main.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
resources: | ||
target: | ||
type: simple:Resource | ||
properties: | ||
value: true | ||
deletedWith: | ||
type: simple:Resource | ||
properties: | ||
value: true | ||
options: {} | ||
notDeletedWith: | ||
type: simple:Resource | ||
properties: | ||
value: true |
2 changes: 2 additions & 0 deletions
2
cmd/pulumi-language-yaml/testdata/projects/l2-resource-option-deleted-with/Pulumi.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
name: l2-resource-option-deleted-with | ||
runtime: yaml |
3 changes: 3 additions & 0 deletions
3
cmd/pulumi-language-yaml/testdata/projects/l2-resource-option-deleted-with/sdks/simple.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
packageDeclarationVersion: 1 | ||
name: simple | ||
version: 2.0.0 |
17 changes: 17 additions & 0 deletions
17
cmd/pulumi-language-yaml/testdata/projects/l2-resource-option-protect/Main.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
resources: | ||
protected: | ||
type: simple:Resource | ||
properties: | ||
value: true | ||
options: | ||
protect: true | ||
unprotected: | ||
type: simple:Resource | ||
properties: | ||
value: true | ||
options: | ||
protect: false | ||
defaulted: | ||
type: simple:Resource | ||
properties: | ||
value: true |
2 changes: 2 additions & 0 deletions
2
cmd/pulumi-language-yaml/testdata/projects/l2-resource-option-protect/Pulumi.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
name: l2-resource-option-protect | ||
runtime: yaml |
3 changes: 3 additions & 0 deletions
3
cmd/pulumi-language-yaml/testdata/projects/l2-resource-option-protect/sdks/simple.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
packageDeclarationVersion: 1 | ||
name: simple | ||
version: 2.0.0 |
15 changes: 15 additions & 0 deletions
15
cmd/pulumi-language-yaml/testdata/projects/l2-resource-option-retain-on-delete/Main.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
resources: | ||
retainOnDelete: | ||
type: simple:Resource | ||
properties: | ||
value: true | ||
options: {} | ||
notRetainOnDelete: | ||
type: simple:Resource | ||
properties: | ||
value: true | ||
options: {} | ||
defaulted: | ||
type: simple:Resource | ||
properties: | ||
value: true |
2 changes: 2 additions & 0 deletions
2
cmd/pulumi-language-yaml/testdata/projects/l2-resource-option-retain-on-delete/Pulumi.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
name: l2-resource-option-retain-on-delete | ||
runtime: yaml |
3 changes: 3 additions & 0 deletions
3
...lumi-language-yaml/testdata/projects/l2-resource-option-retain-on-delete/sdks/simple.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
packageDeclarationVersion: 1 | ||
name: simple | ||
version: 2.0.0 |
3 changes: 3 additions & 0 deletions
3
...pulumi-language-yaml/testdata/sdks/any-type-function-15.0.0/any-type-function-15.0.0.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
packageDeclarationVersion: 1 | ||
name: any-type-function | ||
version: 15.0.0 |
3 changes: 3 additions & 0 deletions
3
cmd/pulumi-language-yaml/testdata/sdks/component-13.3.7/component-13.3.7.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
packageDeclarationVersion: 1 | ||
name: component | ||
version: 13.3.7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.