Skip to content

Commit

Permalink
Rollout improved example converter (#453)
Browse files Browse the repository at this point in the history
Rolls out improved TF example converter.
  • Loading branch information
t0yv0 authored Apr 19, 2024
1 parent ad522c5 commit 8e2e48f
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 11 deletions.
5 changes: 5 additions & 0 deletions .ci-mgmt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ provider: signalfx
major-version: 7
makeTemplate: bridged
plugins:
- name: terraform
version: "1.0.16"
kind: converter

- name: aws
version: "4.10.0"
team: ecosystem
pulumiConvert: 1
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ VERSION := $(shell pulumictl get version)
JAVA_GEN := pulumi-java-gen
TESTPARALLELISM := 10
WORKING_DIR := $(shell pwd)
PULUMI_CONVERT := 0
PULUMI_CONVERT := 1

development: install_plugins provider build_sdks install_sdks

Expand Down Expand Up @@ -111,6 +111,7 @@ install_nodejs_sdk:
install_plugins: export PULUMI_HOME := $(WORKING_DIR)/.pulumi
install_plugins: export PATH := $(WORKING_DIR)/.pulumi/bin:$(PATH)
install_plugins: .pulumi/bin/pulumi
.pulumi/bin/pulumi plugin install converter terraform 1.0.16
.pulumi/bin/pulumi plugin install resource aws 4.10.0

lint_provider: provider
Expand Down
20 changes: 10 additions & 10 deletions provider/cmd/pulumi-resource-signalfx/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -6658,25 +6658,25 @@
"description": "A collection of values returned by getDimensionValues.\n",
"properties": {
"id": {
"type": "string",
"description": "The provider-assigned unique ID for this managed resource.\n"
"description": "The provider-assigned unique ID for this managed resource.\n",
"type": "string"
},
"query": {
"type": "string"
},
"values": {
"type": "array",
"items": {
"type": "string"
}
},
"type": "array"
}
},
"type": "object",
"required": [
"query",
"values",
"id"
]
],
"type": "object"
}
},
"signalfx:pagerduty/getIntegration:getIntegration": {
Expand All @@ -6700,19 +6700,19 @@
"type": "boolean"
},
"id": {
"type": "string",
"description": "The provider-assigned unique ID for this managed resource.\n"
"description": "The provider-assigned unique ID for this managed resource.\n",
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object",
"required": [
"enabled",
"name",
"id"
]
],
"type": "object"
}
}
}
Expand Down

0 comments on commit 8e2e48f

Please sign in to comment.