@ -25,6 +25,7 @@ type FlatConfig struct {
ObjectID * string ` mapstructure:"object_id" cty:"object_id" hcl:"object_id" `
TenantID * string ` mapstructure:"tenant_id" required:"false" cty:"tenant_id" hcl:"tenant_id" `
SubscriptionID * string ` mapstructure:"subscription_id" cty:"subscription_id" hcl:"subscription_id" `
UserAssignedManagedIdentities [ ] string ` mapstructure:"user_assigned_managed_identities" required:"false" cty:"user_assigned_managed_identities" hcl:"user_assigned_managed_identities" `
CaptureNamePrefix * string ` mapstructure:"capture_name_prefix" cty:"capture_name_prefix" hcl:"capture_name_prefix" `
CaptureContainerName * string ` mapstructure:"capture_container_name" cty:"capture_container_name" hcl:"capture_container_name" `
SharedGallery * FlatSharedImageGallery ` mapstructure:"shared_image_gallery" required:"false" cty:"shared_image_gallery" hcl:"shared_image_gallery" `
@ -128,110 +129,111 @@ func (*Config) FlatMapstructure() interface{ HCL2Spec() map[string]hcldec.Spec }
// The decoded values from this spec will then be applied to a FlatConfig.
func ( * FlatConfig ) HCL2Spec ( ) map [ string ] hcldec . Spec {
s := map [ string ] hcldec . Spec {
"packer_build_name" : & hcldec . AttrSpec { Name : "packer_build_name" , Type : cty . String , Required : false } ,
"packer_builder_type" : & hcldec . AttrSpec { Name : "packer_builder_type" , Type : cty . String , Required : false } ,
"packer_debug" : & hcldec . AttrSpec { Name : "packer_debug" , Type : cty . Bool , Required : false } ,
"packer_force" : & hcldec . AttrSpec { Name : "packer_force" , Type : cty . Bool , Required : false } ,
"packer_on_error" : & hcldec . AttrSpec { Name : "packer_on_error" , Type : cty . String , Required : false } ,
"packer_user_variables" : & hcldec . AttrSpec { Name : "packer_user_variables" , Type : cty . Map ( cty . String ) , Required : false } ,
"packer_sensitive_variables" : & hcldec . AttrSpec { Name : "packer_sensitive_variables" , Type : cty . List ( cty . String ) , Required : false } ,
"cloud_environment_name" : & hcldec . AttrSpec { Name : "cloud_environment_name" , Type : cty . String , Required : false } ,
"client_id" : & hcldec . AttrSpec { Name : "client_id" , Type : cty . String , Required : false } ,
"client_secret" : & hcldec . AttrSpec { Name : "client_secret" , Type : cty . String , Required : false } ,
"client_cert_path" : & hcldec . AttrSpec { Name : "client_cert_path" , Type : cty . String , Required : false } ,
"client_jwt" : & hcldec . AttrSpec { Name : "client_jwt" , Type : cty . String , Required : false } ,
"object_id" : & hcldec . AttrSpec { Name : "object_id" , Type : cty . String , Required : false } ,
"tenant_id" : & hcldec . AttrSpec { Name : "tenant_id" , Type : cty . String , Required : false } ,
"subscription_id" : & hcldec . AttrSpec { Name : "subscription_id" , Type : cty . String , Required : false } ,
"capture_name_prefix" : & hcldec . AttrSpec { Name : "capture_name_prefix" , Type : cty . String , Required : false } ,
"capture_container_name" : & hcldec . AttrSpec { Name : "capture_container_name" , Type : cty . String , Required : false } ,
"shared_image_gallery" : & hcldec . BlockSpec { TypeName : "shared_image_gallery" , Nested : hcldec . ObjectSpec ( ( * FlatSharedImageGallery ) ( nil ) . HCL2Spec ( ) ) } ,
"shared_image_gallery_destination" : & hcldec . BlockSpec { TypeName : "shared_image_gallery_destination" , Nested : hcldec . ObjectSpec ( ( * FlatSharedImageGalleryDestination ) ( nil ) . HCL2Spec ( ) ) } ,
"shared_image_gallery_timeout" : & hcldec . AttrSpec { Name : "shared_image_gallery_timeout" , Type : cty . String , Required : false } ,
"packer_build_name" : & hcldec . AttrSpec { Name : "packer_build_name" , Type : cty . String , Required : false } ,
"packer_builder_type" : & hcldec . AttrSpec { Name : "packer_builder_type" , Type : cty . String , Required : false } ,
"packer_debug" : & hcldec . AttrSpec { Name : "packer_debug" , Type : cty . Bool , Required : false } ,
"packer_force" : & hcldec . AttrSpec { Name : "packer_force" , Type : cty . Bool , Required : false } ,
"packer_on_error" : & hcldec . AttrSpec { Name : "packer_on_error" , Type : cty . String , Required : false } ,
"packer_user_variables" : & hcldec . AttrSpec { Name : "packer_user_variables" , Type : cty . Map ( cty . String ) , Required : false } ,
"packer_sensitive_variables" : & hcldec . AttrSpec { Name : "packer_sensitive_variables" , Type : cty . List ( cty . String ) , Required : false } ,
"cloud_environment_name" : & hcldec . AttrSpec { Name : "cloud_environment_name" , Type : cty . String , Required : false } ,
"client_id" : & hcldec . AttrSpec { Name : "client_id" , Type : cty . String , Required : false } ,
"client_secret" : & hcldec . AttrSpec { Name : "client_secret" , Type : cty . String , Required : false } ,
"client_cert_path" : & hcldec . AttrSpec { Name : "client_cert_path" , Type : cty . String , Required : false } ,
"client_jwt" : & hcldec . AttrSpec { Name : "client_jwt" , Type : cty . String , Required : false } ,
"object_id" : & hcldec . AttrSpec { Name : "object_id" , Type : cty . String , Required : false } ,
"tenant_id" : & hcldec . AttrSpec { Name : "tenant_id" , Type : cty . String , Required : false } ,
"subscription_id" : & hcldec . AttrSpec { Name : "subscription_id" , Type : cty . String , Required : false } ,
"user_assigned_managed_identities" : & hcldec . AttrSpec { Name : "user_assigned_managed_identities" , Type : cty . List ( cty . String ) , Required : false } ,
"capture_name_prefix" : & hcldec . AttrSpec { Name : "capture_name_prefix" , Type : cty . String , Required : false } ,
"capture_container_name" : & hcldec . AttrSpec { Name : "capture_container_name" , Type : cty . String , Required : false } ,
"shared_image_gallery" : & hcldec . BlockSpec { TypeName : "shared_image_gallery" , Nested : hcldec . ObjectSpec ( ( * FlatSharedImageGallery ) ( nil ) . HCL2Spec ( ) ) } ,
"shared_image_gallery_destination" : & hcldec . BlockSpec { TypeName : "shared_image_gallery_destination" , Nested : hcldec . ObjectSpec ( ( * FlatSharedImageGalleryDestination ) ( nil ) . HCL2Spec ( ) ) } ,
"shared_image_gallery_timeout" : & hcldec . AttrSpec { Name : "shared_image_gallery_timeout" , Type : cty . String , Required : false } ,
"shared_gallery_image_version_end_of_life_date" : & hcldec . AttrSpec { Name : "shared_gallery_image_version_end_of_life_date" , Type : cty . String , Required : false } ,
"shared_image_gallery_replica_count" : & hcldec . AttrSpec { Name : "shared_image_gallery_replica_count" , Type : cty . Number , Required : false } ,
"shared_gallery_image_version_exclude_from_latest" : & hcldec . AttrSpec { Name : "shared_gallery_image_version_exclude_from_latest" , Type : cty . Bool , Required : false } ,
"image_publisher" : & hcldec . AttrSpec { Name : "image_publisher" , Type : cty . String , Required : false } ,
"image_offer" : & hcldec . AttrSpec { Name : "image_offer" , Type : cty . String , Required : false } ,
"image_sku" : & hcldec . AttrSpec { Name : "image_sku" , Type : cty . String , Required : false } ,
"image_version" : & hcldec . AttrSpec { Name : "image_version" , Type : cty . String , Required : false } ,
"image_url" : & hcldec . AttrSpec { Name : "image_url" , Type : cty . String , Required : false } ,
"custom_managed_image_name" : & hcldec . AttrSpec { Name : "custom_managed_image_name" , Type : cty . String , Required : false } ,
"custom_managed_image_resource_group_name" : & hcldec . AttrSpec { Name : "custom_managed_image_resource_group_name" , Type : cty . String , Required : false } ,
"location" : & hcldec . AttrSpec { Name : "location" , Type : cty . String , Required : false } ,
"vm_size" : & hcldec . AttrSpec { Name : "vm_size" , Type : cty . String , Required : false } ,
"managed_image_resource_group_name" : & hcldec . AttrSpec { Name : "managed_image_resource_group_name" , Type : cty . String , Required : false } ,
"managed_image_name" : & hcldec . AttrSpec { Name : "managed_image_name" , Type : cty . String , Required : false } ,
"managed_image_storage_account_type" : & hcldec . AttrSpec { Name : "managed_image_storage_account_type" , Type : cty . String , Required : false } ,
"managed_image_os_disk_snapshot_name" : & hcldec . AttrSpec { Name : "managed_image_os_disk_snapshot_name" , Type : cty . String , Required : false } ,
"managed_image_data_disk_snapshot_prefix" : & hcldec . AttrSpec { Name : "managed_image_data_disk_snapshot_prefix" , Type : cty . String , Required : false } ,
"managed_image_zone_resilient" : & hcldec . AttrSpec { Name : "managed_image_zone_resilient" , Type : cty . Bool , Required : false } ,
"azure_tags" : & hcldec . AttrSpec { Name : "azure_tags" , Type : cty . Map ( cty . String ) , Required : false } ,
"azure_tag" : & hcldec . BlockListSpec { TypeName : "azure_tag" , Nested : hcldec . ObjectSpec ( ( * hcl2template . FlatNameValue ) ( nil ) . HCL2Spec ( ) ) } ,
"resource_group_name" : & hcldec . AttrSpec { Name : "resource_group_name" , Type : cty . String , Required : false } ,
"storage_account" : & hcldec . AttrSpec { Name : "storage_account" , Type : cty . String , Required : false } ,
"temp_compute_name" : & hcldec . AttrSpec { Name : "temp_compute_name" , Type : cty . String , Required : false } ,
"temp_resource_group_name" : & hcldec . AttrSpec { Name : "temp_resource_group_name" , Type : cty . String , Required : false } ,
"build_resource_group_name" : & hcldec . AttrSpec { Name : "build_resource_group_name" , Type : cty . String , Required : false } ,
"build_key_vault_name" : & hcldec . AttrSpec { Name : "build_key_vault_name" , Type : cty . String , Required : false } ,
"build_key_vault_sku" : & hcldec . AttrSpec { Name : "build_key_vault_sku" , Type : cty . String , Required : false } ,
"private_virtual_network_with_public_ip" : & hcldec . AttrSpec { Name : "private_virtual_network_with_public_ip" , Type : cty . Bool , Required : false } ,
"virtual_network_name" : & hcldec . AttrSpec { Name : "virtual_network_name" , Type : cty . String , Required : false } ,
"virtual_network_subnet_name" : & hcldec . AttrSpec { Name : "virtual_network_subnet_name" , Type : cty . String , Required : false } ,
"virtual_network_resource_group_name" : & hcldec . AttrSpec { Name : "virtual_network_resource_group_name" , Type : cty . String , Required : false } ,
"custom_data_file" : & hcldec . AttrSpec { Name : "custom_data_file" , Type : cty . String , Required : false } ,
"plan_info" : & hcldec . BlockSpec { TypeName : "plan_info" , Nested : hcldec . ObjectSpec ( ( * FlatPlanInformation ) ( nil ) . HCL2Spec ( ) ) } ,
"polling_duration_timeout" : & hcldec . AttrSpec { Name : "polling_duration_timeout" , Type : cty . String , Required : false } ,
"os_type" : & hcldec . AttrSpec { Name : "os_type" , Type : cty . String , Required : false } ,
"os_disk_size_gb" : & hcldec . AttrSpec { Name : "os_disk_size_gb" , Type : cty . Number , Required : false } ,
"disk_additional_size" : & hcldec . AttrSpec { Name : "disk_additional_size" , Type : cty . List ( cty . Number ) , Required : false } ,
"disk_caching_type" : & hcldec . AttrSpec { Name : "disk_caching_type" , Type : cty . String , Required : false } ,
"allowed_inbound_ip_addresses" : & hcldec . AttrSpec { Name : "allowed_inbound_ip_addresses" , Type : cty . List ( cty . String ) , Required : false } ,
"boot_diag_storage_account" : & hcldec . AttrSpec { Name : "boot_diag_storage_account" , Type : cty . String , Required : false } ,
"custom_resource_build_prefix" : & hcldec . AttrSpec { Name : "custom_resource_build_prefix" , Type : cty . String , Required : false } ,
"communicator" : & hcldec . AttrSpec { Name : "communicator" , Type : cty . String , Required : false } ,
"pause_before_connecting" : & hcldec . AttrSpec { Name : "pause_before_connecting" , Type : cty . String , Required : false } ,
"ssh_host" : & hcldec . AttrSpec { Name : "ssh_host" , Type : cty . String , Required : false } ,
"ssh_port" : & hcldec . AttrSpec { Name : "ssh_port" , Type : cty . Number , Required : false } ,
"ssh_username" : & hcldec . AttrSpec { Name : "ssh_username" , Type : cty . String , Required : false } ,
"ssh_password" : & hcldec . AttrSpec { Name : "ssh_password" , Type : cty . String , Required : false } ,
"ssh_keypair_name" : & hcldec . AttrSpec { Name : "ssh_keypair_name" , Type : cty . String , Required : false } ,
"temporary_key_pair_name" : & hcldec . AttrSpec { Name : "temporary_key_pair_name" , Type : cty . String , Required : false } ,
"ssh_clear_authorized_keys" : & hcldec . AttrSpec { Name : "ssh_clear_authorized_keys" , Type : cty . Bool , Required : false } ,
"ssh_private_key_file" : & hcldec . AttrSpec { Name : "ssh_private_key_file" , Type : cty . String , Required : false } ,
"ssh_pty" : & hcldec . AttrSpec { Name : "ssh_pty" , Type : cty . Bool , Required : false } ,
"ssh_timeout" : & hcldec . AttrSpec { Name : "ssh_timeout" , Type : cty . String , Required : false } ,
"ssh_wait_timeout" : & hcldec . AttrSpec { Name : "ssh_wait_timeout" , Type : cty . String , Required : false } ,
"ssh_agent_auth" : & hcldec . AttrSpec { Name : "ssh_agent_auth" , Type : cty . Bool , Required : false } ,
"ssh_disable_agent_forwarding" : & hcldec . AttrSpec { Name : "ssh_disable_agent_forwarding" , Type : cty . Bool , Required : false } ,
"ssh_handshake_attempts" : & hcldec . AttrSpec { Name : "ssh_handshake_attempts" , Type : cty . Number , Required : false } ,
"ssh_bastion_host" : & hcldec . AttrSpec { Name : "ssh_bastion_host" , Type : cty . String , Required : false } ,
"ssh_bastion_port" : & hcldec . AttrSpec { Name : "ssh_bastion_port" , Type : cty . Number , Required : false } ,
"ssh_bastion_agent_auth" : & hcldec . AttrSpec { Name : "ssh_bastion_agent_auth" , Type : cty . Bool , Required : false } ,
"ssh_bastion_username" : & hcldec . AttrSpec { Name : "ssh_bastion_username" , Type : cty . String , Required : false } ,
"ssh_bastion_password" : & hcldec . AttrSpec { Name : "ssh_bastion_password" , Type : cty . String , Required : false } ,
"ssh_bastion_interactive" : & hcldec . AttrSpec { Name : "ssh_bastion_interactive" , Type : cty . Bool , Required : false } ,
"ssh_bastion_private_key_file" : & hcldec . AttrSpec { Name : "ssh_bastion_private_key_file" , Type : cty . String , Required : false } ,
"ssh_file_transfer_method" : & hcldec . AttrSpec { Name : "ssh_file_transfer_method" , Type : cty . String , Required : false } ,
"ssh_proxy_host" : & hcldec . AttrSpec { Name : "ssh_proxy_host" , Type : cty . String , Required : false } ,
"ssh_proxy_port" : & hcldec . AttrSpec { Name : "ssh_proxy_port" , Type : cty . Number , Required : false } ,
"ssh_proxy_username" : & hcldec . AttrSpec { Name : "ssh_proxy_username" , Type : cty . String , Required : false } ,
"ssh_proxy_password" : & hcldec . AttrSpec { Name : "ssh_proxy_password" , Type : cty . String , Required : false } ,
"ssh_keep_alive_interval" : & hcldec . AttrSpec { Name : "ssh_keep_alive_interval" , Type : cty . String , Required : false } ,
"ssh_read_write_timeout" : & hcldec . AttrSpec { Name : "ssh_read_write_timeout" , Type : cty . String , Required : false } ,
"ssh_remote_tunnels" : & hcldec . AttrSpec { Name : "ssh_remote_tunnels" , Type : cty . List ( cty . String ) , Required : false } ,
"ssh_local_tunnels" : & hcldec . AttrSpec { Name : "ssh_local_tunnels" , Type : cty . List ( cty . String ) , Required : false } ,
"ssh_public_key" : & hcldec . AttrSpec { Name : "ssh_public_key" , Type : cty . List ( cty . Number ) , Required : false } ,
"ssh_private_key" : & hcldec . AttrSpec { Name : "ssh_private_key" , Type : cty . List ( cty . Number ) , Required : false } ,
"winrm_username" : & hcldec . AttrSpec { Name : "winrm_username" , Type : cty . String , Required : false } ,
"winrm_password" : & hcldec . AttrSpec { Name : "winrm_password" , Type : cty . String , Required : false } ,
"winrm_host" : & hcldec . AttrSpec { Name : "winrm_host" , Type : cty . String , Required : false } ,
"winrm_port" : & hcldec . AttrSpec { Name : "winrm_port" , Type : cty . Number , Required : false } ,
"winrm_timeout" : & hcldec . AttrSpec { Name : "winrm_timeout" , Type : cty . String , Required : false } ,
"winrm_use_ssl" : & hcldec . AttrSpec { Name : "winrm_use_ssl" , Type : cty . Bool , Required : false } ,
"winrm_insecure" : & hcldec . AttrSpec { Name : "winrm_insecure" , Type : cty . Bool , Required : false } ,
"winrm_use_ntlm" : & hcldec . AttrSpec { Name : "winrm_use_ntlm" , Type : cty . Bool , Required : false } ,
"async_resourcegroup_delete" : & hcldec . AttrSpec { Name : "async_resourcegroup_delete" , Type : cty . Bool , Required : false } ,
"image_publisher" : & hcldec . AttrSpec { Name : "image_publisher" , Type : cty . String , Required : false } ,
"image_offer" : & hcldec . AttrSpec { Name : "image_offer" , Type : cty . String , Required : false } ,
"image_sku" : & hcldec . AttrSpec { Name : "image_sku" , Type : cty . String , Required : false } ,
"image_version" : & hcldec . AttrSpec { Name : "image_version" , Type : cty . String , Required : false } ,
"image_url" : & hcldec . AttrSpec { Name : "image_url" , Type : cty . String , Required : false } ,
"custom_managed_image_name" : & hcldec . AttrSpec { Name : "custom_managed_image_name" , Type : cty . String , Required : false } ,
"custom_managed_image_resource_group_name" : & hcldec . AttrSpec { Name : "custom_managed_image_resource_group_name" , Type : cty . String , Required : false } ,
"location" : & hcldec . AttrSpec { Name : "location" , Type : cty . String , Required : false } ,
"vm_size" : & hcldec . AttrSpec { Name : "vm_size" , Type : cty . String , Required : false } ,
"managed_image_resource_group_name" : & hcldec . AttrSpec { Name : "managed_image_resource_group_name" , Type : cty . String , Required : false } ,
"managed_image_name" : & hcldec . AttrSpec { Name : "managed_image_name" , Type : cty . String , Required : false } ,
"managed_image_storage_account_type" : & hcldec . AttrSpec { Name : "managed_image_storage_account_type" , Type : cty . String , Required : false } ,
"managed_image_os_disk_snapshot_name" : & hcldec . AttrSpec { Name : "managed_image_os_disk_snapshot_name" , Type : cty . String , Required : false } ,
"managed_image_data_disk_snapshot_prefix" : & hcldec . AttrSpec { Name : "managed_image_data_disk_snapshot_prefix" , Type : cty . String , Required : false } ,
"managed_image_zone_resilient" : & hcldec . AttrSpec { Name : "managed_image_zone_resilient" , Type : cty . Bool , Required : false } ,
"azure_tags" : & hcldec . AttrSpec { Name : "azure_tags" , Type : cty . Map ( cty . String ) , Required : false } ,
"azure_tag" : & hcldec . BlockListSpec { TypeName : "azure_tag" , Nested : hcldec . ObjectSpec ( ( * hcl2template . FlatNameValue ) ( nil ) . HCL2Spec ( ) ) } ,
"resource_group_name" : & hcldec . AttrSpec { Name : "resource_group_name" , Type : cty . String , Required : false } ,
"storage_account" : & hcldec . AttrSpec { Name : "storage_account" , Type : cty . String , Required : false } ,
"temp_compute_name" : & hcldec . AttrSpec { Name : "temp_compute_name" , Type : cty . String , Required : false } ,
"temp_resource_group_name" : & hcldec . AttrSpec { Name : "temp_resource_group_name" , Type : cty . String , Required : false } ,
"build_resource_group_name" : & hcldec . AttrSpec { Name : "build_resource_group_name" , Type : cty . String , Required : false } ,
"build_key_vault_name" : & hcldec . AttrSpec { Name : "build_key_vault_name" , Type : cty . String , Required : false } ,
"build_key_vault_sku" : & hcldec . AttrSpec { Name : "build_key_vault_sku" , Type : cty . String , Required : false } ,
"private_virtual_network_with_public_ip" : & hcldec . AttrSpec { Name : "private_virtual_network_with_public_ip" , Type : cty . Bool , Required : false } ,
"virtual_network_name" : & hcldec . AttrSpec { Name : "virtual_network_name" , Type : cty . String , Required : false } ,
"virtual_network_subnet_name" : & hcldec . AttrSpec { Name : "virtual_network_subnet_name" , Type : cty . String , Required : false } ,
"virtual_network_resource_group_name" : & hcldec . AttrSpec { Name : "virtual_network_resource_group_name" , Type : cty . String , Required : false } ,
"custom_data_file" : & hcldec . AttrSpec { Name : "custom_data_file" , Type : cty . String , Required : false } ,
"plan_info" : & hcldec . BlockSpec { TypeName : "plan_info" , Nested : hcldec . ObjectSpec ( ( * FlatPlanInformation ) ( nil ) . HCL2Spec ( ) ) } ,
"polling_duration_timeout" : & hcldec . AttrSpec { Name : "polling_duration_timeout" , Type : cty . String , Required : false } ,
"os_type" : & hcldec . AttrSpec { Name : "os_type" , Type : cty . String , Required : false } ,
"os_disk_size_gb" : & hcldec . AttrSpec { Name : "os_disk_size_gb" , Type : cty . Number , Required : false } ,
"disk_additional_size" : & hcldec . AttrSpec { Name : "disk_additional_size" , Type : cty . List ( cty . Number ) , Required : false } ,
"disk_caching_type" : & hcldec . AttrSpec { Name : "disk_caching_type" , Type : cty . String , Required : false } ,
"allowed_inbound_ip_addresses" : & hcldec . AttrSpec { Name : "allowed_inbound_ip_addresses" , Type : cty . List ( cty . String ) , Required : false } ,
"boot_diag_storage_account" : & hcldec . AttrSpec { Name : "boot_diag_storage_account" , Type : cty . String , Required : false } ,
"custom_resource_build_prefix" : & hcldec . AttrSpec { Name : "custom_resource_build_prefix" , Type : cty . String , Required : false } ,
"communicator" : & hcldec . AttrSpec { Name : "communicator" , Type : cty . String , Required : false } ,
"pause_before_connecting" : & hcldec . AttrSpec { Name : "pause_before_connecting" , Type : cty . String , Required : false } ,
"ssh_host" : & hcldec . AttrSpec { Name : "ssh_host" , Type : cty . String , Required : false } ,
"ssh_port" : & hcldec . AttrSpec { Name : "ssh_port" , Type : cty . Number , Required : false } ,
"ssh_username" : & hcldec . AttrSpec { Name : "ssh_username" , Type : cty . String , Required : false } ,
"ssh_password" : & hcldec . AttrSpec { Name : "ssh_password" , Type : cty . String , Required : false } ,
"ssh_keypair_name" : & hcldec . AttrSpec { Name : "ssh_keypair_name" , Type : cty . String , Required : false } ,
"temporary_key_pair_name" : & hcldec . AttrSpec { Name : "temporary_key_pair_name" , Type : cty . String , Required : false } ,
"ssh_clear_authorized_keys" : & hcldec . AttrSpec { Name : "ssh_clear_authorized_keys" , Type : cty . Bool , Required : false } ,
"ssh_private_key_file" : & hcldec . AttrSpec { Name : "ssh_private_key_file" , Type : cty . String , Required : false } ,
"ssh_pty" : & hcldec . AttrSpec { Name : "ssh_pty" , Type : cty . Bool , Required : false } ,
"ssh_timeout" : & hcldec . AttrSpec { Name : "ssh_timeout" , Type : cty . String , Required : false } ,
"ssh_wait_timeout" : & hcldec . AttrSpec { Name : "ssh_wait_timeout" , Type : cty . String , Required : false } ,
"ssh_agent_auth" : & hcldec . AttrSpec { Name : "ssh_agent_auth" , Type : cty . Bool , Required : false } ,
"ssh_disable_agent_forwarding" : & hcldec . AttrSpec { Name : "ssh_disable_agent_forwarding" , Type : cty . Bool , Required : false } ,
"ssh_handshake_attempts" : & hcldec . AttrSpec { Name : "ssh_handshake_attempts" , Type : cty . Number , Required : false } ,
"ssh_bastion_host" : & hcldec . AttrSpec { Name : "ssh_bastion_host" , Type : cty . String , Required : false } ,
"ssh_bastion_port" : & hcldec . AttrSpec { Name : "ssh_bastion_port" , Type : cty . Number , Required : false } ,
"ssh_bastion_agent_auth" : & hcldec . AttrSpec { Name : "ssh_bastion_agent_auth" , Type : cty . Bool , Required : false } ,
"ssh_bastion_username" : & hcldec . AttrSpec { Name : "ssh_bastion_username" , Type : cty . String , Required : false } ,
"ssh_bastion_password" : & hcldec . AttrSpec { Name : "ssh_bastion_password" , Type : cty . String , Required : false } ,
"ssh_bastion_interactive" : & hcldec . AttrSpec { Name : "ssh_bastion_interactive" , Type : cty . Bool , Required : false } ,
"ssh_bastion_private_key_file" : & hcldec . AttrSpec { Name : "ssh_bastion_private_key_file" , Type : cty . String , Required : false } ,
"ssh_file_transfer_method" : & hcldec . AttrSpec { Name : "ssh_file_transfer_method" , Type : cty . String , Required : false } ,
"ssh_proxy_host" : & hcldec . AttrSpec { Name : "ssh_proxy_host" , Type : cty . String , Required : false } ,
"ssh_proxy_port" : & hcldec . AttrSpec { Name : "ssh_proxy_port" , Type : cty . Number , Required : false } ,
"ssh_proxy_username" : & hcldec . AttrSpec { Name : "ssh_proxy_username" , Type : cty . String , Required : false } ,
"ssh_proxy_password" : & hcldec . AttrSpec { Name : "ssh_proxy_password" , Type : cty . String , Required : false } ,
"ssh_keep_alive_interval" : & hcldec . AttrSpec { Name : "ssh_keep_alive_interval" , Type : cty . String , Required : false } ,
"ssh_read_write_timeout" : & hcldec . AttrSpec { Name : "ssh_read_write_timeout" , Type : cty . String , Required : false } ,
"ssh_remote_tunnels" : & hcldec . AttrSpec { Name : "ssh_remote_tunnels" , Type : cty . List ( cty . String ) , Required : false } ,
"ssh_local_tunnels" : & hcldec . AttrSpec { Name : "ssh_local_tunnels" , Type : cty . List ( cty . String ) , Required : false } ,
"ssh_public_key" : & hcldec . AttrSpec { Name : "ssh_public_key" , Type : cty . List ( cty . Number ) , Required : false } ,
"ssh_private_key" : & hcldec . AttrSpec { Name : "ssh_private_key" , Type : cty . List ( cty . Number ) , Required : false } ,
"winrm_username" : & hcldec . AttrSpec { Name : "winrm_username" , Type : cty . String , Required : false } ,
"winrm_password" : & hcldec . AttrSpec { Name : "winrm_password" , Type : cty . String , Required : false } ,
"winrm_host" : & hcldec . AttrSpec { Name : "winrm_host" , Type : cty . String , Required : false } ,
"winrm_port" : & hcldec . AttrSpec { Name : "winrm_port" , Type : cty . Number , Required : false } ,
"winrm_timeout" : & hcldec . AttrSpec { Name : "winrm_timeout" , Type : cty . String , Required : false } ,
"winrm_use_ssl" : & hcldec . AttrSpec { Name : "winrm_use_ssl" , Type : cty . Bool , Required : false } ,
"winrm_insecure" : & hcldec . AttrSpec { Name : "winrm_insecure" , Type : cty . Bool , Required : false } ,
"winrm_use_ntlm" : & hcldec . AttrSpec { Name : "winrm_use_ntlm" , Type : cty . Bool , Required : false } ,
"async_resourcegroup_delete" : & hcldec . AttrSpec { Name : "async_resourcegroup_delete" , Type : cty . Bool , Required : false } ,
}
return s
}