Adrien Delorme
87d6b2433f
make generate
2020-03-16 15:21:29 +01:00
Adrien Delorme
9a74ce60d5
Update config.go
2020-03-16 15:12:13 +01:00
Adrien Delorme
e1c84806cc
rewrap
2020-03-16 14:55:03 +01:00
Adrien Delorme
ac7cc8c5ac
Update target_image_config.go
2020-03-16 14:53:06 +01:00
Adrien Delorme
5c91c7aae6
Update source_machine_config.go
2020-03-16 12:42:56 +01:00
Adrien Delorme
bd387edf5a
Update run_config.go
2020-03-16 12:40:09 +01:00
Adrien Delorme
392afa30cf
Update block_device.go
2020-03-16 12:37:36 +01:00
Adrien Delorme
fc837e3698
Update run_config.go
2020-03-16 12:36:20 +01:00
Adrien Delorme
ce8d3d3747
wip
2020-03-16 12:35:25 +01:00
Adrien Delorme
a9ed8eac2a
Update config.go
2020-03-16 12:32:57 +01:00
Adrien Delorme
0cbf80dafe
wip
2020-03-16 12:26:03 +01:00
Adrien Delorme
45695608b5
WIP
2020-03-16 12:21:46 +01:00
Adrien Delorme
dab689ce2e
WIP
2020-03-16 12:19:34 +01:00
Adrien Delorme
dbb4981d66
WIP
2020-03-16 12:13:05 +01:00
Adrien Delorme
6f2f17c400
WIP
2020-03-13 18:07:55 +01:00
Adrien Delorme
6e6490d688
WIP
2020-03-13 18:04:48 +01:00
Adrien Delorme
260dc59500
use the hcl2template.KVFilter where we can
2020-03-13 17:17:46 +01:00
Adrien Delorme
b4efd13a4d
aws: use the empty func when possible
2020-03-13 17:17:24 +01:00
Adrien Delorme
af38430eb8
add kvfilter type that regroups very frequently used filters
2020-03-13 17:17:00 +01:00
Adrien Delorme
9e6d5da277
hcl2: add general kv store that could be used anywhere
2020-03-13 16:04:42 +01:00
Adrien Delorme
ae4b158ca3
Update mapstructure-to-hcl2.go
2020-03-13 15:44:13 +01:00
Megan Marsh
1c27d9d04b
update changelog
2020-03-12 15:32:06 -07:00
Megan Marsh
aeedc9af7a
Merge pull request #8879 from mbrancato/specify_keyvault_sku
...
Add support for configurable KeyVault SKU
2020-03-12 13:47:51 -07:00
Megan Marsh
5365fda5ff
Merge pull request #8884 from hashicorp/fix_codecov_config
...
Rename codecov.yml to .codecov.yml
2020-03-12 11:30:10 -07:00
Moss
df7590f47a
Rename codecov.yml to .codecov.yml
2020-03-12 18:43:58 +01:00
Moss
cfe94789d5
Add codecov.yml path
2020-03-12 18:35:44 +01:00
Megan Marsh
4bd7b14096
Merge pull request #8732 from jhawk28/reorder_cdrom_drive
...
add the remote iso first so that it is first in boot order
2020-03-12 09:35:12 -07:00
Joshua Foster
8eac9f9634
add boot order documentation based on feedback
2020-03-12 11:29:20 -04:00
Joshua Foster
49bd57ee12
add the remote iso first so that it is first in boot order
2020-03-12 11:29:19 -04:00
Wilken Rivera
7b705545d9
docs: Various doc clean-ups to fix code block formatting and syntax highlighting ( #8868 )
2020-03-12 15:05:08 +01:00
zac
79f1fab836
hcl2template/types: add spaces in error messages. ( #8881 )
2020-03-12 13:40:25 +01:00
Sylvia Moss
fa4b9ae958
Add Codecov configuration ( #8862 )
2020-03-12 10:36:10 +01:00
Mike Brancato
6a141c7695
add generated documentation
2020-03-11 21:52:36 -04:00
Mike Brancato
ebb161ae41
Fix config documentation
2020-03-11 21:43:37 -04:00
Mike Brancato
892622987c
Add KeyVault parameter and fix whitespace
2020-03-11 21:13:10 -04:00
Mike Brancato
0f09638f7a
Add HCL2 spec for KeyVault SKU
2020-03-11 20:48:34 -04:00
Mike Brancato
3c6b248bd5
Fix formatting
2020-03-11 20:45:44 -04:00
Mike Brancato
926e3ac2e4
Add support for configurable KeyVault SKU
2020-03-11 20:33:57 -04:00
Wilken Rivera
b9f1b3c8d4
Fix gosimple S1005 linting issue ( #8870 )
...
Results before change
```
⇶ golangci-lint run ./... --disable-all --enable=gosimple | grep 1005
fix/fixer_comm_config.go:48:4: S1005: should write `sshHostPortMinRaw := builders["ssh_host_port_min"]` instead of `sshHostPortMinRaw, _ := builders["ssh_host_port_min"]` (gosimple)
fix/fixer_comm_config.go:64:4: S1005: should write `sshHostPortMaxRaw := builders["ssh_host_port_max"]` instead of `sshHostPortMaxRaw, _ := builders["ssh_host_port_max"]` (gosimple)
fix/fixer_comm_config.go:81:4: S1005: should write `sshSkipNatMappingRaw := builders["ssh_skip_nat_mapping"]` instead of `sshSkipNatMappingRaw, _ := builders["ssh_skip_nat_mapping"]` (gosimple)
packer/artifact_mock.go:47:2: S1005: should write `value := a.StateValues[name]` instead of `value, _ := a.StateValues[name]` (gosimple)
packer/artifact_test.go:31:2: S1005: should write `value := a.state[name]` instead of `value, _ := a.state[name]` (gosimple)
```
Results after change
```
```
2020-03-11 10:30:08 +01:00
Wilken Rivera
66ad6f3483
builders: Fix gosimple S1007 linting issue ( #8871 )
...
Results before change
```
⇶ golangci-lint run ./... --disable-all --enable=gosimple | grep 1007
builder/alicloud/ecs/image_config.go:208:9: S1007: should use raw string
post-processor/vsphere-template/step_mark_as_template.go:130:8: S1007: shape twice (gosimple)
builder/azure/arm/config.go:58:27: S1007: should use raw string (`...`)
builder/azure/arm/config.go:59:27: S1007: should use raw string (`...`)
builder/qemu/driver.go:192:15: S1007: should use raw string (`...`)
```
Results after change
```
⇶ golangci-lint run ./... --disable-all --enable=gosimple | grep 1007
```
2020-03-11 10:29:22 +01:00
Megan Marsh
072a71b419
Merge pull request #8863 from hashicorp/update_go-cty_regex
...
import new replace and regex_replace funcs from go-cty + documentation
2020-03-10 13:09:09 -07:00
Megan Marsh
e518a0a8b7
Merge branch 'master' into update_go-cty_regex
2020-03-10 10:52:42 -07:00
Megan Marsh
68e083603d
Update website/source/docs/configuration/from-1.5/functions/string/replace.html.md
...
Co-Authored-By: Wilken Rivera <dev@wilkenrivera.com>
2020-03-10 10:51:25 -07:00
Megan Marsh
8a1caaa804
Merge pull request #8837 from hashicorp/fix_8730
...
Fix crash when an unset variable is used
2020-03-10 10:40:48 -07:00
Adrien Delorme
0c45bd8b4f
import new replace and regex replace funcs from go-cty + documentation
2020-03-10 16:14:25 +01:00
Adrien Delorme
d4d30127a3
Update variables.html.md
2020-03-10 14:53:48 +01:00
Adrien Delorme
c4349f5a33
document variables behaviours with tables
2020-03-10 14:51:17 +01:00
Jaspal Chauhan
b204687de9
Add VBoxManage config section to VirtualBox OVF builder docs ( #8861 )
2020-03-10 11:11:27 +01:00
Adrien Delorme
631f402d1e
Merge branch 'master' into fix_8730
2020-03-09 17:49:33 +01:00
Megan Marsh
7873cabf63
Merge pull request #8858 from hashicorp/fix_8791
...
update spot price docs
2020-03-09 09:31:56 -07:00