full-dress-10026
06/19/2019, 11:11 PMbroad-dog-22463
06/19/2019, 11:22 PMwhite-balloon-205
full-dress-10026
06/20/2019, 2:09 PMbroad-dog-22463
06/20/2019, 2:10 PMfull-dress-10026
06/20/2019, 2:11 PMIf the pulumi provider name differs from the Terraform provider name, set TF_NAME in Makefile to the Terraform name, leaving PACK set to the Pulumi name.How would I tell if the pulumi provider name is different than the Terraform name? It appears that everything with the Datadog provider is named datadog.
Err:9 <http://ppa.launchpad.net/bzr/ppa/ubuntu> bionic Release
404 Not Found [IP: 91.189.95.83 80]
and
E: The repository '<http://ppa.launchpad.net/bzr/ppa/ubuntu> bionic Release' does not have a Release file.
Is there a recommended way to install this tool?apt-get install bzr
appeared to install it. Never heard of bazaar vcs.make ensure
ENSURE:
GO111MODULE=on go mod vendor
/bin/bash: line 1: gomod-doccopy: command not found
build/common.mk:182: recipe for target 'ensure' failed
make: *** [ensure] Error 127
gmod-doccopy appears to be a pulumi tool. Do I need that installed somehow?go get <http://github.com/pulumi/scripts/gomod-doccopy|github.com/pulumi/scripts/gomod-doccopy>
. Perhaps I need to expose something else in my path?$HOME/go/bin
on my PATH."api_key": {
Type: makeType("api_key", "ApiKey"),
Default: &tfbridge.DefaultInfo{
EnvVars: []string{"DATADOG_API_KEY"},
},
},
"app_key": {
Type: makeType("app_key", "AppKey"),
Default: &tfbridge.DefaultInfo{
EnvVars: []string{"DATADOG_APP_KEY"},
},
},
Does that look correct?white-balloon-205
Config
block you can provide which maps these - see one of the other providers for an example of what that looks like.full-dress-10026
06/20/2019, 3:14 PMaws:profile
is optional. There's nothing here to indicate that it is optional: https://github.com/pulumi/pulumi-aws/blob/6a78b9008cf552324391f994a2c493da0d67e5db/resources.go#L223-L227. Does the terraform provider handle setting defaults?white-balloon-205
full-dress-10026
06/20/2019, 3:22 PMResources
and DataSources
?white-balloon-205
full-dress-10026
06/20/2019, 3:24 PMmake
and got:
make
===============
datadog Package
===============
BUILD:
go install -ldflags "-X <http://github.com/pulumi/pulumi-datadog/pkg/version.Version=v0.0.1-dev.1560791809+gb0e45da.dirty|github.com/pulumi/pulumi-datadog/pkg/version.Version=v0.0.1-dev.1560791809+gb0e45da.dirty>" <http://github.com/pulumi/pulumi-datadog/cmd/pulumi-tfgen-datadog|github.com/pulumi/pulumi-datadog/cmd/pulumi-tfgen-datadog>
can't load package: package <http://github.com/pulumi/pulumi-datadog/cmd/pulumi-tfgen-datadog|github.com/pulumi/pulumi-datadog/cmd/pulumi-tfgen-datadog>: cannot find package "<http://github.com/pulumi/pulumi-datadog/cmd/pulumi-tfgen-datadog|github.com/pulumi/pulumi-datadog/cmd/pulumi-tfgen-datadog>" in any of:
/usr/local/go/src/github.com/pulumi/pulumi-datadog/cmd/pulumi-tfgen-datadog (from $GOROOT)
/home/kenny/go/src/github.com/pulumi/pulumi-datadog/cmd/pulumi-tfgen-datadog (from $GOPATH)
Makefile:43: recipe for target 'tfgen' failed
make: *** [tfgen] Error 1
white-balloon-205
full-dress-10026
06/20/2019, 3:37 PMbroad-dog-22463
06/21/2019, 9:50 PMfull-dress-10026
06/21/2019, 11:49 PM