pulumi-datadog icon indicating copy to clipboard operation
pulumi-datadog copied to clipboard

Unable to create Synthetic API Test (SSL) - Extra timeout property being added?

Open samirageb opened this issue 4 years ago • 6 comments

When attempting to create a basic API Synthetics test of type SSL I get a 400 Bad Request error.

DETAILS

  • Language: Node.js/Typescript
  • Pulumi version: 2.16.2
  • Pulumi Datadog version: 2.13.0

CODE

import * as pulumi from "@pulumi/pulumi";
import * as datadog from "@pulumi/datadog";

const testSsl = new datadog.SyntheticsTest("test_yahoo", {
    locations: ["aws:eu-central-1"],
    name: "An API test on example.org",
    optionsList: {
        tickEvery: 900,
    },
    request: {
        host: "yahoo.com",
        port: 443,
    },
    status: "live",
    subtype: "ssl",
    type: "api",
});

OUTPUT The following output was created with this command:

pulumi up --logtostderr -v=9 2> out.txt

I truncated to include just the relevant portion of the log

I0106 18:08:04.976373   23767 plugins.go:674] GetPluginPath(resource, datadog, 2.13.0): found in cache at /home/sami/.pulumi/plugins/resource-datadog-v2.13.0/pulumi-resource-datadog
I0106 18:08:04.976384   23767 plugin.go:124] Launching plugin 'datadog (resource)' from '/home/sami/.pulumi/plugins/resource-datadog-v2.13.0/pulumi-resource-datadog' with args: 127.0.0.1:39803
I0106 18:08:05.055746   23767 provider_plugin.go:1296] Provider[datadog, 0xc000e98d20].GetPluginInfo() executing
I0106 18:08:05.056492   23767 provider_plugin.go:176] Provider[datadog, 0xc000e98d20].CheckConfig(urn:pulumi:prod::cloud-dd-synthetic::pulumi:providers:datadog::default_2_13_0) executing (#olds=1,#news=1)
I0106 18:08:05.056526   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc000e98d20].CheckConfig(urn:pulumi:prod::cloud-dd-synthetic::pulumi:providers:datadog::default_2_13_0).olds]: version={2.13.0}
I0106 18:08:05.056551   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc000e98d20].CheckConfig(urn:pulumi:prod::cloud-dd-synthetic::pulumi:providers:datadog::default_2_13_0).news]: version={2.13.0}
I0106 18:08:05.057792   23767 provider_plugin.go:208] Provider[datadog, 0xc000e98d20].CheckConfig(urn:pulumi:prod::cloud-dd-synthetic::pulumi:providers:datadog::default_2_13_0) unimplemented rpc: returning news as is
I0106 18:08:05.057817   23767 registry.go:156] setProvider(urn:pulumi:prod::cloud-dd-synthetic::pulumi:providers:datadog::default_2_13_0::04da6b54-80e4-46f7-96ec-b56ff0331ba9)
I0106 18:08:05.057832   23767 registry.go:264] ProviderRegistry.Diff(urn:pulumi:prod::cloud-dd-synthetic::pulumi:providers:datadog::default_2_13_0,d367f7d0-3a95-4b6b-aa59-78702a17ac4d): executing (#olds=1,#news=1)
I0106 18:08:05.057841   23767 registry.go:146] GetProvider(urn:pulumi:prod::cloud-dd-synthetic::pulumi:providers:datadog::default_2_13_0::04da6b54-80e4-46f7-96ec-b56ff0331ba9)
I0106 18:08:05.057853   23767 provider_plugin.go:281] Provider[datadog, 0xc000e98d20].DiffConfig(urn:pulumi:prod::cloud-dd-synthetic::pulumi:providers:datadog::default_2_13_0) executing (#olds=1,#news=1)
I0106 18:08:05.057863   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc000e98d20].DiffConfig(urn:pulumi:prod::cloud-dd-synthetic::pulumi:providers:datadog::default_2_13_0).olds]: version={2.13.0}
I0106 18:08:05.057875   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc000e98d20].DiffConfig(urn:pulumi:prod::cloud-dd-synthetic::pulumi:providers:datadog::default_2_13_0).news]: version={2.13.0}
I0106 18:08:05.058231   23767 provider_plugin.go:312] Provider[datadog, 0xc000e98d20].DiffConfig(urn:pulumi:prod::cloud-dd-synthetic::pulumi:providers:datadog::default_2_13_0) unimplemented rpc: returning DiffUnknown with no replaces
I0106 18:08:05.058253   23767 step_generator.go:458] Planner decided not to update 'urn:pulumi:prod::cloud-dd-synthetic::pulumi:providers:datadog::default_2_13_0' after diff (same) (inputs=map[version:{2.13.0}])
I0106 18:08:05.058275   23767 step_executor.go:327] StepExecutor worker(-2): worker received chain for execution
I0106 18:08:05.058281   23767 step_executor.go:327] StepExecutor worker(-2): worker waiting for incoming chains
I0106 18:08:05.058293   23767 step_executor.go:327] StepExecutor worker(1): launching oneshot worker
I0106 18:08:05.058302   23767 snapshot.go:130] SnapshotManager: Beginning mutation for step `same` on resource `urn:pulumi:prod::cloud-dd-synthetic::pulumi:providers:datadog::default_2_13_0`
I0106 18:08:05.058308   23767 step_executor.go:327] StepExecutor worker(1): applying step same on urn:pulumi:prod::cloud-dd-synthetic::pulumi:providers:datadog::default_2_13_0 (preview false)
I0106 18:08:05.058318   23767 snapshot.go:252] SnapshotManager: sameSnapshotMutation.End(..., true)
I0106 18:08:05.058348   23767 snapshot.go:498] Marked old state snapshot as done: urn:pulumi:prod::cloud-dd-synthetic::pulumi:providers:datadog::default_2_13_0
I0106 18:08:05.058356   23767 snapshot.go:507] Appended new state snapshot to be written: urn:pulumi:prod::cloud-dd-synthetic::pulumi:providers:datadog::default_2_13_0
I0106 18:08:05.058366   23767 snapshot.go:274] SnapshotManager: sameSnapshotMutation.End() eliding write
I0106 18:08:05.058391   23767 step_executor.go:327] StepExecutor worker(1): step same on urn:pulumi:prod::cloud-dd-synthetic::pulumi:providers:datadog::default_2_13_0 retired
I0106 18:08:05.058427   23767 source_eval.go:349] registered default provider for package datadog-2.13.0: urn:pulumi:prod::cloud-dd-synthetic::pulumi:providers:datadog::default_2_13_0
I0106 18:08:05.058468   23767 rpc.go:247] Unmarshaling property for RPC[ResourceMonitor.RegisterResource(datadog:index/syntheticsTest:SyntheticsTest,test_yahoo)]: locations={[{aws:eu-central-1}]}
I0106 18:08:05.058499   23767 rpc.go:247] Unmarshaling property for RPC[ResourceMonitor.RegisterResource(datadog:index/syntheticsTest:SyntheticsTest,test_yahoo)]: name={An API test on example.org}
I0106 18:08:05.058504   23767 rpc.go:247] Unmarshaling property for RPC[ResourceMonitor.RegisterResource(datadog:index/syntheticsTest:SyntheticsTest,test_yahoo)]: tickEvery={900}
I0106 18:08:05.058512   23767 rpc.go:247] Unmarshaling property for RPC[ResourceMonitor.RegisterResource(datadog:index/syntheticsTest:SyntheticsTest,test_yahoo)]: optionsList={map[tickEvery:{900}]}
I0106 18:08:05.058520   23767 rpc.go:247] Unmarshaling property for RPC[ResourceMonitor.RegisterResource(datadog:index/syntheticsTest:SyntheticsTest,test_yahoo)]: host={yahoo.com}
I0106 18:08:05.058524   23767 rpc.go:247] Unmarshaling property for RPC[ResourceMonitor.RegisterResource(datadog:index/syntheticsTest:SyntheticsTest,test_yahoo)]: port={443}
I0106 18:08:05.058530   23767 rpc.go:247] Unmarshaling property for RPC[ResourceMonitor.RegisterResource(datadog:index/syntheticsTest:SyntheticsTest,test_yahoo)]: request={map[host:{yahoo.com} port:{443}]}
I0106 18:08:05.058537   23767 rpc.go:247] Unmarshaling property for RPC[ResourceMonitor.RegisterResource(datadog:index/syntheticsTest:SyntheticsTest,test_yahoo)]: status={live}
I0106 18:08:05.058542   23767 rpc.go:247] Unmarshaling property for RPC[ResourceMonitor.RegisterResource(datadog:index/syntheticsTest:SyntheticsTest,test_yahoo)]: subtype={ssl}
I0106 18:08:05.058546   23767 rpc.go:247] Unmarshaling property for RPC[ResourceMonitor.RegisterResource(datadog:index/syntheticsTest:SyntheticsTest,test_yahoo)]: type={api}
I0106 18:08:05.058555   23767 source_eval.go:870] ResourceMonitor.RegisterResource received: t=datadog:index/syntheticsTest:SyntheticsTest, name=test_yahoo, custom=true, #props=7, parent=urn:pulumi:prod::cloud-dd-synthetic::pulumi:pulumi:Stack::cloud-dd-synthetic-prod, protect=false, provider=urn:pulumi:prod::cloud-dd-synthetic::pulumi:providers:datadog::default_2_13_0::d367f7d0-3a95-4b6b-aa59-78702a17ac4d, deps=[], deleteBeforeReplace=<nil>, ignoreChanges=[], aliases=[], customTimeouts={0 0 0}
I0106 18:08:05.058591   23767 source_eval.go:158] EvalSourceIterator produced a registration: t=datadog:index/syntheticsTest:SyntheticsTest,name=test_yahoo,#props=7
I0106 18:08:05.058623   23767 deployment_executor.go:225] deploymentExecutor.Execute(...): incoming event (nil? false, <nil>)
I0106 18:08:05.058632   23767 deployment_executor.go:371] deploymentExecutor.handleSingleEvent(...): received RegisterResourceEvent
I0106 18:08:05.058642   23767 registry.go:146] GetProvider(urn:pulumi:prod::cloud-dd-synthetic::pulumi:providers:datadog::default_2_13_0::d367f7d0-3a95-4b6b-aa59-78702a17ac4d)
I0106 18:08:05.058651   23767 provider_plugin.go:522] Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo) executing (#olds=0,#news=7
I0106 18:08:05.058658   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).news]: locations={[{aws:eu-central-1}]}
I0106 18:08:05.058665   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).news]: name={An API test on example.org}
I0106 18:08:05.058669   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).news]: optionsList={map[tickEvery:{900}]}
I0106 18:08:05.058680   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).news]: tickEvery={900}
I0106 18:08:05.058686   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).news]: request={map[host:{yahoo.com} port:{443}]}
I0106 18:08:05.058777   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).news]: host={yahoo.com}
I0106 18:08:05.058787   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).news]: port={443}
I0106 18:08:05.058793   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).news]: status={live}
I0106 18:08:05.058797   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).news]: subtype={ssl}
I0106 18:08:05.058801   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).news]: type={api}
I0106 18:08:05.059934   23767 rpc.go:247] Unmarshaling property for RPC[Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: __defaults={[{message}]}
I0106 18:08:05.059959   23767 rpc.go:247] Unmarshaling property for RPC[Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: locations={[{aws:eu-central-1}]}
I0106 18:08:05.059975   23767 rpc.go:247] Unmarshaling property for RPC[Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: message={}
I0106 18:08:05.059987   23767 rpc.go:247] Unmarshaling property for RPC[Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: name={An API test on example.org}
I0106 18:08:05.060001   23767 rpc.go:247] Unmarshaling property for RPC[Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: __defaults={[{minLocationFailed}]}
I0106 18:08:05.060012   23767 rpc.go:247] Unmarshaling property for RPC[Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: minLocationFailed={1}
I0106 18:08:05.060018   23767 rpc.go:247] Unmarshaling property for RPC[Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: tickEvery={900}
I0106 18:08:05.060025   23767 rpc.go:247] Unmarshaling property for RPC[Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: optionsList={map[__defaults:{[{minLocationFailed}]} minLocationFailed:{1} tickEvery:{900}]}
I0106 18:08:05.060037   23767 rpc.go:247] Unmarshaling property for RPC[Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: __defaults={[{timeout}]}
I0106 18:08:05.060044   23767 rpc.go:247] Unmarshaling property for RPC[Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: host={yahoo.com}
I0106 18:08:05.060048   23767 rpc.go:247] Unmarshaling property for RPC[Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: port={443}
I0106 18:08:05.060058   23767 rpc.go:247] Unmarshaling property for RPC[Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: timeout={60}
I0106 18:08:05.060066   23767 rpc.go:247] Unmarshaling property for RPC[Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: request={[{map[__defaults:{[{timeout}]} host:{yahoo.com} port:{443} timeout:{60}]}]}
I0106 18:08:05.060076   23767 rpc.go:247] Unmarshaling property for RPC[Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: status={live}
I0106 18:08:05.060081   23767 rpc.go:247] Unmarshaling property for RPC[Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: subtype={ssl}
I0106 18:08:05.060086   23767 rpc.go:247] Unmarshaling property for RPC[Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: type={api}
I0106 18:08:05.060094   23767 provider_plugin.go:594] Provider[datadog, 0xc001111140].Check(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo) success: inputs=#9 failures=#0
I0106 18:08:05.060103   23767 step_generator.go:499] Planner decided to create 'urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo' (inputs=map[__defaults:{[{message}]} locations:{[{aws:eu-central-1}]} message:{} name:{An API test on example.org} optionsList:{map[__defaults:{[{minLocationFailed}]} minLocationFailed:{1} tickEvery:{900}]} request:{[{map[__defaults:{[{timeout}]} host:{yahoo.com} port:{443} timeout:{60}]}]} status:{live} subtype:{ssl} type:{api}])
I0106 18:08:05.060146   23767 step_executor.go:327] StepExecutor worker(-2): worker received chain for execution
I0106 18:08:05.060173   23767 step_executor.go:327] StepExecutor worker(-2): worker waiting for incoming chains
I0106 18:08:05.060214   23767 step_executor.go:327] StepExecutor worker(2): launching oneshot worker
I0106 18:08:05.060306   23767 snapshot.go:130] SnapshotManager: Beginning mutation for step `create` on resource `urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo`
I0106 18:08:05.060317   23767 snapshot.go:283] SnapshotManager.doCreate(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo)
I0106 18:08:05.060324   23767 snapshot.go:514] SnapshotManager.markPendingOperation(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo, creating)
I0106 18:08:05.214564   23767 step_executor.go:327] StepExecutor worker(2): applying step create on urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo (preview false)
I0106 18:08:05.214695   23767 registry.go:146] GetProvider(urn:pulumi:prod::cloud-dd-synthetic::pulumi:providers:datadog::default_2_13_0::d367f7d0-3a95-4b6b-aa59-78702a17ac4d)
I0106 18:08:05.215021   23767 provider_plugin.go:695] Provider[datadog, 0xc001111140].Create(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo) executing (#props=9)
I0106 18:08:05.215099   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc001111140].Create(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: __defaults={[{message}]}
I0106 18:08:05.215154   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc001111140].Create(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: locations={[{aws:eu-central-1}]}
I0106 18:08:05.215193   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc001111140].Create(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: message={}
I0106 18:08:05.215269   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc001111140].Create(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: name={An API test on example.org}
I0106 18:08:05.215329   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc001111140].Create(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: optionsList={map[__defaults:{[{minLocationFailed}]} minLocationFailed:{1} tickEvery:{900}]}
I0106 18:08:05.215588   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc001111140].Create(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: __defaults={[{minLocationFailed}]}
I0106 18:08:05.215643   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc001111140].Create(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: minLocationFailed={1}
I0106 18:08:05.215706   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc001111140].Create(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: tickEvery={900}
I0106 18:08:05.215750   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc001111140].Create(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: request={[{map[__defaults:{[{timeout}]} host:{yahoo.com} port:{443} timeout:{60}]}]}
I0106 18:08:05.215821   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc001111140].Create(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: __defaults={[{timeout}]}
I0106 18:08:05.215858   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc001111140].Create(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: host={yahoo.com}
I0106 18:08:05.215879   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc001111140].Create(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: port={443}
I0106 18:08:05.215909   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc001111140].Create(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: timeout={60}
I0106 18:08:05.215941   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc001111140].Create(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: status={live}
I0106 18:08:05.215971   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc001111140].Create(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: subtype={ssl}
I0106 18:08:05.216010   23767 rpc.go:72] Marshaling property for RPC[Provider[datadog, 0xc001111140].Create(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo).inputs]: type={api}
I0106 18:08:05.220747   23767 eventsink.go:59] No meta timeoutkey found in Apply()
I0106 18:08:05.220823   23767 eventsink.go:62] eventSink::Debug(<{%reset%}>No meta timeoutkey found in Apply()<{%reset%}>)
I0106 18:08:05.463070   23767 provider_plugin.go:1391] provider received rpc error `Unknown`: `error creating synthetics test: 400 Bad Request: {"errors": ["properties.config.properties.request.additionalProperties: Additional properties are not allowed (u'timeout' was unexpected)\n\nFailed validating 'additionalProperties' in schema['properties']['config']['properties']['request']:\n    {'additionalProperties': False,\n     'properties': {'certificate': {'additionalProperties': False,\n                                    'properties': {'cert': {'additionalProperties': False,\n                                                            'properties': {'content': {'maxLength': 51200,\n                                                                                       'type': 'string'},\n                                                                           'filename': {'maxLength': 1500,\n                                                                                        'type': 'string'},\n                                                                           'updatedAt': {'maxLength': 1500,\n                                                                                         'type': 'string'}},\n                                                            'required': ['filename'],\n                                                            'type': 'object'},\n                                                   'key': {'additionalProperties': False,\n                                                           'properties': {'content': {'maxLength': 51200,\n                                                                                      'type': 'string'},\n                                                                          'filename': {'maxLength': 1500,\n                                                                                       'type': 'string'},\n                                                                          'updatedAt': {'maxLength': 1500,\n                                                                                        'type': 'string'}},\n                                                           'required': ['filename'],\n                                                           'type': 'object'}},\n                                    'required': ['cert', 'key'],\n                                    'type': 'object'},\n                    'host': {'maxLength': 6000, 'type': 'string'},\n                    'port': {'anyOf': [{'maxLength': 51200,\n                                        'type': 'string'},\n                                       {'maximum': 65535,\n                                        'minimum': 1,\n                                        'type': 'integer'}]}},\n     'required': ['host', 'port'],\n     'type': 'object'}\n\nOn instance['config']['request']:\n    {u'host': u'yahoo.com', u'port': 443, u'timeout': 60}"]}`
I0106 18:08:05.463160   23767 provider_plugin.go:1394] rpc error kind `Unknown` may not be recoverable
I0106 18:08:05.463184   23767 provider_plugin.go:737] Provider[datadog, 0xc001111140].Create(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo) failed: error creating synthetics test: 400 Bad Request: {"errors": ["properties.config.properties.request.additionalProperties: Additional properties are not allowed (u'timeout' was unexpected)\n\nFailed validating 'additionalProperties' in schema['properties']['config']['properties']['request']:\n    {'additionalProperties': False,\n     'properties': {'certificate': {'additionalProperties': False,\n                                    'properties': {'cert': {'additionalProperties': False,\n                                                            'properties': {'content': {'maxLength': 51200,\n                                                                                       'type': 'string'},\n                                                                           'filename': {'maxLength': 1500,\n                                                                                        'type': 'string'},\n                                                                           'updatedAt': {'maxLength': 1500,\n                                                                                         'type': 'string'}},\n                                                            'required': ['filename'],\n                                                            'type': 'object'},\n                                                   'key': {'additionalProperties': False,\n                                                           'properties': {'content': {'maxLength': 51200,\n                                                                                      'type': 'string'},\n                                                                          'filename': {'maxLength': 1500,\n                                                                                       'type': 'string'},\n                                                                          'updatedAt': {'maxLength': 1500,\n                                                                                        'type': 'string'}},\n                                                           'required': ['filename'],\n                                                           'type': 'object'}},\n                                    'required': ['cert', 'key'],\n                                    'type': 'object'},\n                    'host': {'maxLength': 6000, 'type': 'string'},\n                    'port': {'anyOf': [{'maxLength': 51200,\n                                        'type': 'string'},\n                                       {'maximum': 65535,\n                                        'minimum': 1,\n                                        'type': 'integer'}]}},\n     'required': ['host', 'port'],\n     'type': 'object'}\n\nOn instance['config']['request']:\n    {u'host': u'yahoo.com', u'port': 443, u'timeout': 60}"]}
I0106 18:08:05.463247   23767 eventsink.go:86] eventSink::Error(<{%reset%}>error creating synthetics test: 400 Bad Request: {"errors": ["properties.config.properties.request.additionalProperties: Additional properties are not allowed (u'timeout' was unexpected)\n\nFailed validating 'additionalProperties' in schema['properties']['config']['properties']['request']:\n    {'additionalProperties': False,\n     'properties': {'certificate': {'additionalProperties': False,\n                                    'properties': {'cert': {'additionalProperties': False,\n                                                            'properties': {'content': {'maxLength': 51200,\n                                                                                       'type': 'string'},\n                                                                           'filename': {'maxLength': 1500,\n                                                                                        'type': 'string'},\n                                                                           'updatedAt': {'maxLength': 1500,\n                                                                                         'type': 'string'}},\n                                                            'required': ['filename'],\n                                                            'type': 'object'},\n                                                   'key': {'additionalProperties': False,\n                                                           'properties': {'content': {'maxLength': 51200,\n                                                                                      'type': 'string'},\n                                                                          'filename': {'maxLength': 1500,\n                                                                                       'type': 'string'},\n                                                                          'updatedAt': {'maxLength': 1500,\n                                                                                        'type': 'string'}},\n                                                           'required': ['filename'],\n                                                           'type': 'object'}},\n                                    'required': ['cert', 'key'],\n                                    'type': 'object'},\n                    'host': {'maxLength': 6000, 'type': 'string'},\n                    'port': {'anyOf': [{'maxLength': 51200,\n                                        'type': 'string'},\n                                       {'maximum': 65535,\n                                        'minimum': 1,\n                                        'type': 'integer'}]}},\n     'required': ['host', 'port'],\n     'type': 'object'}\n\nOn instance['config']['request']:\n    {u'host': u'yahoo.com', u'port': 443, u'timeout': 60}"]}<{%reset%}>)
I0106 18:08:05.463429   23767 snapshot.go:301] SnapshotManager: createSnapshotMutation.End(..., false)
I0106 18:08:05.463455   23767 snapshot.go:521] SnapshotManager.markOperationComplete(urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo)
I0106 18:08:05.593777   23767 step_executor.go:327] StepExecutor worker(2): step create on urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo failed with an error: error creating synthetics test: 400 Bad Request: {"errors": ["properties.config.properties.request.additionalProperties: Additional properties are not allowed (u'timeout' was unexpected)\n\nFailed validating 'additionalProperties' in schema['properties']['config']['properties']['request']:\n    {'additionalProperties': False,\n     'properties': {'certificate': {'additionalProperties': False,\n                                    'properties': {'cert': {'additionalProperties': False,\n                                                            'properties': {'content': {'maxLength': 51200,\n                                                                                       'type': 'string'},\n                                                                           'filename': {'maxLength': 1500,\n                                                                                        'type': 'string'},\n                                                                           'updatedAt': {'maxLength': 1500,\n                                                                                         'type': 'string'}},\n                                                            'required': ['filename'],\n                                                            'type': 'object'},\n                                                   'key': {'additionalProperties': False,\n                                                           'properties': {'content': {'maxLength': 51200,\n                                                                                      'type': 'string'},\n                                                                          'filename': {'maxLength': 1500,\n                                                                                       'type': 'string'},\n                                                                          'updatedAt': {'maxLength': 1500,\n                                                                                        'type': 'string'}},\n                                                           'required': ['filename'],\n                                                           'type': 'object'}},\n                                    'required': ['cert', 'key'],\n                                    'type': 'object'},\n                    'host': {'maxLength': 6000, 'type': 'string'},\n                    'port': {'anyOf': [{'maxLength': 51200,\n                                        'type': 'string'},\n                                       {'maximum': 65535,\n                                        'minimum': 1,\n                                        'type': 'integer'}]}},\n     'required': ['host', 'port'],\n     'type': 'object'}\n\nOn instance['config']['request']:\n    {u'host': u'yahoo.com', u'port': 443, u'timeout': 60}"]}
I0106 18:08:05.593884   23767 step_executor.go:327] StepExecutor worker(2): step create on urn:pulumi:prod::cloud-dd-synthetic::datadog:index/syntheticsTest:SyntheticsTest::test_yahoo failed, signalling cancellation
I0106 18:08:05.593961   23767 deployment_executor.go:251] deploymentExecutor.Execute(...): context finished: context canceled
I0106 18:08:05.593982   23767 step_executor.go:327] StepExecutor worker(-1): StepExecutor.waitForCompletion(): waiting for worker threads to exit
I0106 18:08:05.594028   23767 step_executor.go:327] StepExecutor worker(-2): worker exiting due to cancellation
I0106 18:08:05.594068   23767 step_executor.go:327] StepExecutor worker(-1): StepExecutor.waitForCompletion(): worker threads all exited
I0106 18:08:05.594082   23767 deployment_executor.go:261] deploymentExecutor.Execute(...): step executor has completed
I0106 18:08:05.594103   23767 eventsink.go:86] eventSink::Error(<{%reset%}>update failed<{%reset%}>)
I0106 18:08:05.594247   23767 deployment_executor.go:132] deploymentExecutor.Execute(...): exiting provider canceller
I0106 18:08:05.598244   23767 langruntime_plugin.go:164] langhost[nodejs].Run(pwd=/home/sami/src/dd-infra,program=.,...,dryrun=false) failed: err=transport is closing

samirageb avatar Jan 07 '21 00:01 samirageb