packer-cn/builder/alicloud/ecs
Adrien Delorme 40947c2bf6
HCL2: generate hcl tags with go-cty tags too (#9306)
This will allow to generate the config files:

```go
package main

import (
	"fmt"

	"github.com/hashicorp/hcl/v2/gohcl"
	"github.com/hashicorp/hcl/v2/hclwrite"
	"github.com/hashicorp/packer/builder/alicloud/ecs"
)

func main() {
	name := "name"
	app := ecs.FlatConfig{
		AlicloudImageName: &name,
		ECSSystemDiskMapping: &ecs.FlatAlicloudDiskDevice{
			DiskName: &name,
		},
	}

	f := hclwrite.NewEmptyFile()
	block := gohcl.EncodeAsBlock(&app, `source "something" "something"`)
	f.Body().AppendBlock(block)
	fmt.Printf("%s", f.Bytes())
}

```

Will output:

```
source "something" "something" {
  packer_user_variables      = null
  packer_sensitive_variables = null
  image_name                 = "name"
  image_share_account        = null
  image_unshare_account      = null
  image_copy_regions         = null
  image_copy_names           = null
  tags                       = null
  tag                        = null
  system_disk_mapping        = { disk_category = null, disk_delete_with_instance = null, disk_descri
ption = null, disk_device = null, disk_encrypted = null, disk_name = "name", disk_size = null, disk_
snapshot_id = null }
  image_disk_mappings        = null
  ssh_remote_tunnels         = null
  ssh_local_tunnels          = null
  ssh_public_key             = null
  ssh_private_key            = null
}
```

This is a good first step for #9015 and #9282 

fix #9304
2020-05-28 11:19:00 +02:00
..
access_config.go single ` 2020-05-13 15:51:18 +02:00
access_config_test.go support aliyun profile 2020-01-03 12:17:34 +08:00
artifact.go support encryption with default service key 2019-04-26 15:12:07 +08:00
artifact_test.go remove alicloud_ prefix 2017-06-01 15:47:47 -07:00
builder.go Merge remote-tracking branch 'origin/master' into sharing_info 2019-12-17 11:57:09 +01:00
builder.hcl2spec.go HCL2: generate hcl tags with go-cty tags too (#9306) 2020-05-28 11:19:00 +02:00
builder_acc_test.go fix describing snapshots issue when image_ignore_data_disks is provided 2019-06-11 15:22:06 +08:00
builder_test.go add an extra string array to the Prepare() return values in the builder interfaces; this sets up the ability for builders to give the provisioners custom user-accessible build-time variables. 2019-12-16 21:23:05 -08:00
client.go cleanup image and snapshot if target image is still not available after timeout 2019-06-13 11:17:39 +08:00
client_test.go remove time flaky time limited tests (#8522) 2019-12-20 08:16:18 +01:00
image_config.go alicloud: better docs + autogenerated post processor docs 2020-05-13 15:49:34 +02:00
image_config_test.go update alicloud builder to use official SDK (#7477) 2019-04-26 10:37:49 +08:00
packer_helper.go update alicloud builder to use official SDK (#7477) 2019-04-26 10:37:49 +08:00
run_config.go fix all local relative links 2020-04-07 17:50:53 -04:00
run_config_test.go split communitacor.SSH & communitacor.WinRM to facilitate documentation 2019-06-06 16:55:24 +02:00
ssh_helper.go refactor all copy pasted sshConfig with into communicator.Config.SSHConfigFunc 2018-08-22 17:02:23 +02:00
step_attach_keypair.go support encryption with default service key 2019-04-26 15:12:07 +08:00
step_check_source_image.go add skip_image_validation arg to use an expired image as the soure image 2019-12-20 11:28:31 +08:00
step_config_eip.go support encryption with default service key 2019-04-26 15:12:07 +08:00
step_config_key_pair.go update alicloud builder to use official SDK (#7477) 2019-04-26 10:37:49 +08:00
step_config_public_ip.go update alicloud builder to use official SDK (#7477) 2019-04-26 10:37:49 +08:00
step_config_security_group.go add SecurityGroupId when DescribeSecurityGroups if user specify SecurityGroupId 2019-12-24 09:47:52 +08:00
step_config_vpc.go support encryption with default service key 2019-04-26 15:12:07 +08:00
step_config_vswitch.go support encryption with default service key 2019-04-26 15:12:07 +08:00
step_create_image.go swap out alicloud encryption *bools for trileans 2019-08-22 13:52:29 -07:00
step_create_instance.go implement ID and Type values in the provisioner template info sharing 2019-12-13 11:57:01 -08:00
step_create_snapshot.go build using HCL2 (#8423) 2019-12-17 11:25:56 +01:00
step_create_tags.go update alicloud builder to use official SDK (#7477) 2019-04-26 10:37:49 +08:00
step_delete_images_snapshots.go update alicloud builder to use official SDK (#7477) 2019-04-26 10:37:49 +08:00
step_pre_validate.go update alicloud builder to use official SDK (#7477) 2019-04-26 10:37:49 +08:00
step_region_copy_image.go swap out alicloud encryption *bools for trileans 2019-08-22 13:52:29 -07:00
step_run_instance.go update alicloud builder to use official SDK (#7477) 2019-04-26 10:37:49 +08:00
step_share_image.go update alicloud builder to use official SDK (#7477) 2019-04-26 10:37:49 +08:00
step_stop_instance.go update alicloud builder to use official SDK (#7477) 2019-04-26 10:37:49 +08:00