Skip to content

Commit

Permalink
Merge pull request #251 from NaverCloudPlatform/add_bm_attribute_new
Browse files Browse the repository at this point in the history
add_bm_attribute
  • Loading branch information
minosmlee authored Nov 29, 2022
2 parents 57c33ef + 09c6fdc commit 7f41624
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/terraform-providers/terraform-provider-ncloud
go 1.16

require (
github.com/NaverCloudPlatform/ncloud-sdk-go-v2 v1.5.3
github.com/NaverCloudPlatform/ncloud-sdk-go-v2 v1.5.5
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320
github.com/hashicorp/terraform-plugin-sdk/v2 v2.13.0
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03
github.com/Microsoft/go-winio v0.4.14/go.mod h1:qXqCSQ3Xa7+6tgxaGTIe4Kpcdsi+P8jBhyzoq1bpyYA=
github.com/Microsoft/go-winio v0.4.16 h1:FtSW/jqD+l4ba5iPBj9CODVtgfYAD8w2wS923g/cFDk=
github.com/Microsoft/go-winio v0.4.16/go.mod h1:XB6nPKklQyQ7GC9LdcBEcBl8PF76WugXOPRXwdLnMv0=
github.com/NaverCloudPlatform/ncloud-sdk-go-v2 v1.5.3 h1:0xKNV67NN6Dnra8Ycvdrd7jig2IrNlQAjsk6Iq9ICPA=
github.com/NaverCloudPlatform/ncloud-sdk-go-v2 v1.5.3/go.mod h1:KWd9AT+YSM6qgsMzPnE23h2/r0bsPSIdJzZIg3BUcfI=
github.com/NaverCloudPlatform/ncloud-sdk-go-v2 v1.5.5 h1:HJijRCjpGph/VXR5X4/u8D0++RmugpGg54KlB5CKJ9M=
github.com/NaverCloudPlatform/ncloud-sdk-go-v2 v1.5.5/go.mod h1:KWd9AT+YSM6qgsMzPnE23h2/r0bsPSIdJzZIg3BUcfI=
github.com/ProtonMail/go-crypto v0.0.0-20210428141323-04723f9f07d7 h1:YoJbenK9C67SkzkDfmQuVln04ygHj3vjZfd9FL+GmQQ=
github.com/ProtonMail/go-crypto v0.0.0-20210428141323-04723f9f07d7/go.mod h1:z4/9nQmJSSwwds7ejkxaJwO37dru3geImFUdJlaLzQo=
github.com/acomagu/bufpipe v1.0.3 h1:fxAGrHZTgQ9w5QqVItgzwj235/uYZYgbXitB+dLupOk=
Expand Down
5 changes: 3 additions & 2 deletions ncloud/data_source_ncloud_server_image.go
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,9 @@ func getVpcServerImageProductList(d *schema.ResourceData, config *ProviderConfig
regionCode := config.RegionCode

reqParams := &vserver.GetServerImageProductListRequest{
ProductCode: StringPtrOrNil(d.GetOk("product_code")),
RegionCode: &regionCode,
ProductCode: StringPtrOrNil(d.GetOk("product_code")),
RegionCode: &regionCode,
InfraResourceDetailTypeCode: StringPtrOrNil(d.GetOk("infra_resource_detail_type_code")),
}

if v, ok := d.GetOk("platform_type"); ok {
Expand Down

0 comments on commit 7f41624

Please sign in to comment.