Skip to content

Commit

Permalink
Update expected outputs of integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Ciprian Hacman committed Dec 4, 2020
1 parent 9a15047 commit fc2b5c9
Show file tree
Hide file tree
Showing 39 changed files with 146 additions and 35 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,7 @@ resource "aws_launch_template" "bastion-bastionuserdata-example-com" {
device_name = "/dev/xvda"
ebs {
delete_on_termination = true
encrypted = false
volume_size = 32
volume_type = "gp2"
}
Expand Down Expand Up @@ -476,6 +477,7 @@ resource "aws_launch_template" "master-us-test-1a-masters-bastionuserdata-exampl
device_name = "/dev/xvda"
ebs {
delete_on_termination = true
encrypted = false
volume_size = 64
volume_type = "gp2"
}
Expand Down Expand Up @@ -540,6 +542,7 @@ resource "aws_launch_template" "nodes-bastionuserdata-example-com" {
device_name = "/dev/xvda"
ebs {
delete_on_termination = true
encrypted = false
volume_size = 128
volume_type = "gp2"
}
Expand Down
3 changes: 2 additions & 1 deletion tests/integration/update_cluster/complex/cloudformation.json
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,8 @@
"Ebs": {
"VolumeType": "gp2",
"VolumeSize": 20,
"DeleteOnTermination": true
"DeleteOnTermination": true,
"Encrypted": false
}
}
],
Expand Down
1 change: 1 addition & 0 deletions tests/integration/update_cluster/complex/kubernetes.tf
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,7 @@ resource "aws_launch_template" "nodes-complex-example-com" {
device_name = "/dev/xvdd"
ebs {
delete_on_termination = true
encrypted = false
volume_size = 20
volume_type = "gp2"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,8 @@
"Ebs": {
"VolumeType": "gp2",
"VolumeSize": 64,
"DeleteOnTermination": true
"DeleteOnTermination": true,
"Encrypted": false
}
},
{
Expand Down Expand Up @@ -316,7 +317,8 @@
"Ebs": {
"VolumeType": "gp2",
"VolumeSize": 128,
"DeleteOnTermination": true
"DeleteOnTermination": true,
"Encrypted": false
}
}
],
Expand Down
4 changes: 4 additions & 0 deletions tests/integration/update_cluster/existing_iam/kubernetes.tf
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,7 @@ resource "aws_launch_template" "master-us-test-1a-masters-existing-iam-example-c
device_name = "/dev/xvda"
ebs {
delete_on_termination = true
encrypted = false
volume_size = 64
volume_type = "gp2"
}
Expand Down Expand Up @@ -434,6 +435,7 @@ resource "aws_launch_template" "master-us-test-1b-masters-existing-iam-example-c
device_name = "/dev/xvda"
ebs {
delete_on_termination = true
encrypted = false
volume_size = 64
volume_type = "gp2"
}
Expand Down Expand Up @@ -498,6 +500,7 @@ resource "aws_launch_template" "master-us-test-1c-masters-existing-iam-example-c
device_name = "/dev/xvda"
ebs {
delete_on_termination = true
encrypted = false
volume_size = 64
volume_type = "gp2"
}
Expand Down Expand Up @@ -562,6 +565,7 @@ resource "aws_launch_template" "nodes-existing-iam-example-com" {
device_name = "/dev/xvda"
ebs {
delete_on_termination = true
encrypted = false
volume_size = 128
volume_type = "gp2"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,8 @@
"Ebs": {
"VolumeType": "gp2",
"VolumeSize": 64,
"DeleteOnTermination": true
"DeleteOnTermination": true,
"Encrypted": false
}
},
{
Expand Down Expand Up @@ -314,7 +315,8 @@
"Ebs": {
"VolumeType": "gp2",
"VolumeSize": 128,
"DeleteOnTermination": true
"DeleteOnTermination": true,
"Encrypted": false
}
}
],
Expand Down
4 changes: 4 additions & 0 deletions tests/integration/update_cluster/existing_sg/kubernetes.tf
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,7 @@ resource "aws_launch_template" "master-us-test-1a-masters-existingsg-example-com
device_name = "/dev/xvda"
ebs {
delete_on_termination = true
encrypted = false
volume_size = 64
volume_type = "gp2"
}
Expand Down Expand Up @@ -515,6 +516,7 @@ resource "aws_launch_template" "master-us-test-1b-masters-existingsg-example-com
device_name = "/dev/xvda"
ebs {
delete_on_termination = true
encrypted = false
volume_size = 64
volume_type = "gp2"
}
Expand Down Expand Up @@ -579,6 +581,7 @@ resource "aws_launch_template" "master-us-test-1c-masters-existingsg-example-com
device_name = "/dev/xvda"
ebs {
delete_on_termination = true
encrypted = false
volume_size = 64
volume_type = "gp2"
}
Expand Down Expand Up @@ -643,6 +646,7 @@ resource "aws_launch_template" "nodes-existingsg-example-com" {
device_name = "/dev/xvda"
ebs {
delete_on_termination = true
encrypted = false
volume_size = 128
volume_type = "gp2"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,8 @@
"Ebs": {
"VolumeType": "gp2",
"VolumeSize": 64,
"DeleteOnTermination": true
"DeleteOnTermination": true,
"Encrypted": false
}
},
{
Expand Down Expand Up @@ -331,7 +332,8 @@
"Ebs": {
"VolumeType": "gp2",
"VolumeSize": 128,
"DeleteOnTermination": true
"DeleteOnTermination": true,
"Encrypted": false
}
}
],
Expand Down
2 changes: 2 additions & 0 deletions tests/integration/update_cluster/externallb/kubernetes.tf
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,7 @@ resource "aws_launch_template" "master-us-test-1a-masters-externallb-example-com
device_name = "/dev/xvda"
ebs {
delete_on_termination = true
encrypted = false
volume_size = 64
volume_type = "gp2"
}
Expand Down Expand Up @@ -328,6 +329,7 @@ resource "aws_launch_template" "nodes-externallb-example-com" {
device_name = "/dev/xvda"
ebs {
delete_on_termination = true
encrypted = false
volume_size = 128
volume_type = "gp2"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,7 @@ resource "aws_launch_template" "master-us-test-1a-masters-externalpolicies-examp
device_name = "/dev/xvda"
ebs {
delete_on_termination = true
encrypted = false
volume_size = 64
volume_type = "gp2"
}
Expand Down Expand Up @@ -398,6 +399,7 @@ resource "aws_launch_template" "nodes-externalpolicies-example-com" {
device_name = "/dev/xvda"
ebs {
delete_on_termination = true
encrypted = false
volume_size = 128
volume_type = "gp2"
}
Expand Down
4 changes: 4 additions & 0 deletions tests/integration/update_cluster/ha/kubernetes.tf
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,7 @@ resource "aws_launch_template" "master-us-test-1a-masters-ha-example-com" {
device_name = "/dev/xvda"
ebs {
delete_on_termination = true
encrypted = false
volume_size = 64
volume_type = "gp2"
}
Expand Down Expand Up @@ -486,6 +487,7 @@ resource "aws_launch_template" "master-us-test-1b-masters-ha-example-com" {
device_name = "/dev/xvda"
ebs {
delete_on_termination = true
encrypted = false
volume_size = 64
volume_type = "gp2"
}
Expand Down Expand Up @@ -550,6 +552,7 @@ resource "aws_launch_template" "master-us-test-1c-masters-ha-example-com" {
device_name = "/dev/xvda"
ebs {
delete_on_termination = true
encrypted = false
volume_size = 64
volume_type = "gp2"
}
Expand Down Expand Up @@ -614,6 +617,7 @@ resource "aws_launch_template" "nodes-ha-example-com" {
device_name = "/dev/xvda"
ebs {
delete_on_termination = true
encrypted = false
volume_size = 128
volume_type = "gp2"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,8 @@
"Ebs": {
"VolumeType": "gp2",
"VolumeSize": 64,
"DeleteOnTermination": true
"DeleteOnTermination": true,
"Encrypted": false
}
}
],
Expand Down Expand Up @@ -311,7 +312,8 @@
"Ebs": {
"VolumeType": "gp2",
"VolumeSize": 64,
"DeleteOnTermination": true
"DeleteOnTermination": true,
"Encrypted": false
}
}
],
Expand Down Expand Up @@ -340,7 +342,8 @@
"Ebs": {
"VolumeType": "gp2",
"VolumeSize": 64,
"DeleteOnTermination": true
"DeleteOnTermination": true,
"Encrypted": false
}
}
],
Expand Down Expand Up @@ -369,7 +372,8 @@
"Ebs": {
"VolumeType": "gp2",
"VolumeSize": 128,
"DeleteOnTermination": true
"DeleteOnTermination": true,
"Encrypted": false
}
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,7 @@ resource "aws_launch_configuration" "master-us-test-1a-masters-launchtemplates-e
name_prefix = "master-us-test-1a.masters.launchtemplates.example.com-"
root_block_device {
delete_on_termination = true
encrypted = false
volume_size = 64
volume_type = "gp2"
}
Expand All @@ -439,6 +440,7 @@ resource "aws_launch_configuration" "master-us-test-1b-masters-launchtemplates-e
name_prefix = "master-us-test-1b.masters.launchtemplates.example.com-"
root_block_device {
delete_on_termination = true
encrypted = false
volume_size = 64
volume_type = "gp2"
}
Expand All @@ -459,6 +461,7 @@ resource "aws_launch_configuration" "master-us-test-1c-masters-launchtemplates-e
name_prefix = "master-us-test-1c.masters.launchtemplates.example.com-"
root_block_device {
delete_on_termination = true
encrypted = false
volume_size = 64
volume_type = "gp2"
}
Expand All @@ -479,6 +482,7 @@ resource "aws_launch_configuration" "nodes-launchtemplates-example-com" {
name_prefix = "nodes.launchtemplates.example.com-"
root_block_device {
delete_on_termination = true
encrypted = false
volume_size = 128
volume_type = "gp2"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,8 @@
"Ebs": {
"VolumeType": "gp2",
"VolumeSize": 64,
"DeleteOnTermination": true
"DeleteOnTermination": true,
"Encrypted": false
}
},
{
Expand Down Expand Up @@ -316,7 +317,8 @@
"Ebs": {
"VolumeType": "gp2",
"VolumeSize": 128,
"DeleteOnTermination": true
"DeleteOnTermination": true,
"Encrypted": false
}
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,8 @@
{
"volume_type": "gp2",
"volume_size": 64,
"delete_on_termination": true
"delete_on_termination": true,
"encrypted": false
}
]
},
Expand Down Expand Up @@ -380,7 +381,8 @@
{
"volume_type": "gp2",
"volume_size": 128,
"delete_on_termination": true
"delete_on_termination": true,
"encrypted": false
}
]
}
Expand Down
2 changes: 2 additions & 0 deletions tests/integration/update_cluster/minimal/kubernetes.tf
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ resource "aws_launch_template" "master-us-test-1a-masters-minimal-example-com" {
device_name = "/dev/xvda"
ebs {
delete_on_termination = true
encrypted = false
volume_size = 64
volume_type = "gp2"
}
Expand Down Expand Up @@ -324,6 +325,7 @@ resource "aws_launch_template" "nodes-minimal-example-com" {
device_name = "/dev/xvda"
ebs {
delete_on_termination = true
encrypted = false
volume_size = 128
volume_type = "gp2"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,8 @@
"Ebs": {
"VolumeType": "gp2",
"VolumeSize": 64,
"DeleteOnTermination": true
"DeleteOnTermination": true,
"Encrypted": false
}
},
{
Expand Down Expand Up @@ -487,7 +488,8 @@
"Ebs": {
"VolumeType": "gp2",
"VolumeSize": 64,
"DeleteOnTermination": true
"DeleteOnTermination": true,
"Encrypted": false
}
},
{
Expand Down Expand Up @@ -598,7 +600,8 @@
"Ebs": {
"VolumeType": "gp2",
"VolumeSize": 64,
"DeleteOnTermination": true
"DeleteOnTermination": true,
"Encrypted": false
}
},
{
Expand Down Expand Up @@ -709,7 +712,8 @@
"Ebs": {
"VolumeType": "gp2",
"VolumeSize": 128,
"DeleteOnTermination": true
"DeleteOnTermination": true,
"Encrypted": false
}
}
],
Expand Down
Loading

0 comments on commit fc2b5c9

Please sign in to comment.