Megan Marsh
|
8964367eb5
|
Merge pull request #9603 from paulmey/disable-password
[azure-arm] Disable ssh password authentication unless password is explicitly specified
|
2020-07-17 09:32:38 -07:00 |
Paul Meyer
|
708ca1c126
|
Add some error checking
|
2020-07-16 23:22:24 +00:00 |
Paul Meyer
|
deca28c158
|
Disable password auth on ssh key Linux builds
|
2020-07-16 22:26:06 +00:00 |
Paul Meyer
|
5fd68374fe
|
Optionally disable password authentication for Linux builds
|
2020-07-16 19:44:01 +00:00 |
Roger Hu
|
28f8241a05
|
update generated files
|
2020-07-10 16:58:06 -07:00 |
Megan Marsh
|
d4a7dd24d9
|
fix link in deprecation warning (#9544)
|
2020-07-08 11:59:39 +02:00 |
Moss
|
8ea64c5b35
|
undocument ssh_keypair_name and ssh_agent_auth
|
2020-07-02 14:55:58 +02:00 |
Moss
|
41edd09d3c
|
undocument temporary_key_pair_name and ssh_private_key_file
|
2020-07-01 16:33:18 +02:00 |
Wilken Rivera
|
8d209caf34
|
Fix spacing and line endings
|
2020-06-24 09:20:32 -04:00 |
Arsenii Petrovich
|
f3c33f9a27
|
remove spaces
|
2020-06-24 16:08:48 +03:00 |
Arsenii Petrovich
|
c2f352ee6e
|
Update JSONs to fix tests and make them work with the latest URL changes
|
2020-06-24 01:35:35 +03:00 |
Arsenii Petrovich
|
d7b8d50acd
|
Fix data disks URI
Fixing bug appeared in 0589f57d4d
|
2020-06-23 12:58:53 +03:00 |
Megan Marsh
|
4f77bb0c4a
|
add new ssh_ciphers option
|
2020-06-17 16:48:23 -07:00 |
Megan Marsh
|
4178625afb
|
re-add winrm_no_proxy option. Winrm code needs to be modified in order to read no_proxy env var when client is created rather than when net/http library is instantiated.
|
2020-06-16 10:27:30 -07:00 |
Megan Marsh
|
02590f6c44
|
Merge pull request #9329 from hashicorp/je.website-maintenance-5-29-20
🌷 Website Spring Maintenance
|
2020-06-03 16:25:23 -07:00 |
Paul Meyer
|
e260212be3
|
Merge pull request #9323 [azure-chroot] copy data disks between shared image galleries
[azure-chroot] copy data disks between shared image galleries
|
2020-06-03 12:32:19 -07:00 |
Jeff Escalante
|
9a38fbe2c7
|
patch source for a couple code block changes
|
2020-05-29 17:22:16 -04:00 |
Paul Meyer
|
2288ab3b53
|
fix typo
|
2020-05-29 04:15:53 +00:00 |
Feiyu Shi
|
1c1991c073
|
fix a bug
|
2020-05-28 19:17:22 -07:00 |
Feiyu Shi
|
f86f5b958a
|
Merge remote-tracking branch 'origin/master' into identity
|
2020-05-28 19:03:44 -07:00 |
Paul Meyer
|
53e5137411
|
[bug] Fix test error message
|
2020-05-28 23:38:17 +00:00 |
Paul Meyer
|
83851bc9aa
|
[bug] fix diskset type in Artifact creation
|
2020-05-28 23:38:17 +00:00 |
Paul Meyer
|
aa8250bcc8
|
give temp data disks lun suffix
|
2020-05-28 23:38:17 +00:00 |
Paul Meyer
|
4c96847683
|
log data disks in images
|
2020-05-28 23:38:17 +00:00 |
Paul Meyer
|
f0cd60b5fa
|
[bug] provide data disk prefix to disk creation
|
2020-05-28 23:38:17 +00:00 |
Paul Meyer
|
af96cf7881
|
Generated files
|
2020-05-28 23:38:14 +00:00 |
Paul Meyer
|
ac3d19ee23
|
Use separate caching/sku for data disks
|
2020-05-28 23:37:44 +00:00 |
Paul Meyer
|
f601f54d0b
|
Use all disks in managed image
|
2020-05-28 23:37:43 +00:00 |
Paul Meyer
|
de4839b66e
|
Use all snapshots when creating a shared image
|
2020-05-28 23:37:43 +00:00 |
Paul Meyer
|
c6b995a34d
|
create snapshots for all disks in a diskset
|
2020-05-28 23:37:43 +00:00 |
Paul Meyer
|
0ee77f8b0e
|
Add datadisks to disk set when using SIG as source
|
2020-05-28 23:37:43 +00:00 |
Paul Meyer
|
12f746b2b5
|
Move to using a diskset
Need to store lun numbers for data disks as well
|
2020-05-28 23:37:43 +00:00 |
Paul Meyer
|
3a3e6e525b
|
Shift names to diskset
Instead of one disk, we'll be working with a set of disks.
|
2020-05-28 23:37:43 +00:00 |
Paul Meyer
|
c9284d03aa
|
Add config for data disk/snapshot naming
|
2020-05-28 23:37:38 +00:00 |
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 |
Feiyu Shi
|
fdb0b2ab03
|
Revert "validate if user assigned identity exists"
This reverts commit 9bd19df040 .
|
2020-05-26 17:17:48 -07:00 |
Feiyu Shi
|
c016f3752a
|
upgrade SIG source api-version to match identity api-version to avoid potential setback for identity
|
2020-05-26 16:08:00 -07:00 |
Feiyu Shi
|
3fdab998f8
|
check error
|
2020-05-25 12:33:33 -07:00 |
Feiyu Shi
|
9bd19df040
|
validate if user assigned identity exists
|
2020-05-24 19:05:46 -07:00 |
Feiyu Shi
|
b334458b91
|
use empty struct for UserAssignedIdentities map value; omitempty
|
2020-05-24 19:05:45 -07:00 |
Feiyu Shi
|
c5e2eff847
|
change to []*Resource
|
2020-05-24 19:05:45 -07:00 |
Feiyu Shi
|
3e3fdaa24e
|
make generate
|
2020-05-24 19:05:45 -07:00 |
Feiyu Shi
|
76a7ab25e2
|
add SetIdentity test
|
2020-05-24 19:05:45 -07:00 |
Feiyu Shi
|
764f99ec7b
|
add correct api-version
|
2020-05-24 19:05:45 -07:00 |
Feiyu Shi
|
f7f033a7fd
|
add config validation test
|
2020-05-24 19:05:45 -07:00 |
Feiyu Shi
|
10b0a4548f
|
add identity resource id validation
|
2020-05-24 19:05:45 -07:00 |
Feiyu Shi
|
7c1a62dfed
|
set identity field in the template
|
2020-05-24 19:05:45 -07:00 |
Feiyu Shi
|
d9c9bfbae8
|
add identity field to the template
|
2020-05-24 19:05:45 -07:00 |
Feiyu Shi
|
b5b2982772
|
add user_assigned_managed_identities to the config
|
2020-05-24 19:05:45 -07:00 |
Megan Marsh
|
58b32ebefa
|
Merge pull request #9251 from hashicorp/fix_9249
builder/azure-arm: Update runtime constants with a valid DataDiskName
|
2020-05-19 11:00:44 -07:00 |