Skip to content

Commit a86bd25

Browse files
committed
update seal-on-aws
1 parent e8c7d3d commit a86bd25

File tree

2 files changed

+14
-18
lines changed

2 files changed

+14
-18
lines changed

seal-on-aws/seal.tf

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
provider "aws" {
2-
region = "ap-northeast-1"
3-
}
4-
51
data "aws_ami" "ubuntu" {
62
most_recent = true
73

seal-on-aws/variables.tf

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
11
# @group "Basic"
2-
variable "docker_username" {
2+
variable "seal_image" {
33
type = string
4-
description = "Dockerhub auth username for seal image"
5-
default = "tryseal"
4+
description = "Seal image"
5+
default = "sealio/seal-server:main"
66
}
77

88
# @group "Basic"
9-
variable "docker_password" {
9+
variable "seal_bootstrap_password" {
1010
type = string
11-
description = "Dockerhub auth password for seal image"
11+
description = "Seal bootstrap password"
12+
default = "youcanseeme"
1213
sensitive = true
1314
}
1415

1516
# @group "Basic"
16-
variable "seal_bootstrap_password" {
17+
variable "docker_username" {
1718
type = string
18-
description = "Seal bootstrap password"
19-
default = "youcanseeme"
20-
sensitive = true
19+
description = "Dockerhub auth username for seal image"
20+
default = "tryseal"
2121
}
2222

2323
# @group "Basic"
24-
variable "seal_image" {
24+
variable "docker_password" {
2525
type = string
26-
description = "Seal image"
27-
default = "sealio/seal-server:main"
26+
description = "Dockerhub auth password for seal image"
27+
sensitive = true
2828
}
2929

3030
# @group "Basic"
3131
variable "k3s_enable" {
3232
type = bool
3333
description = "Create K3S or not"
34-
default = false
34+
default = true
3535
}
3636

3737
# @group "Basic"
@@ -56,7 +56,7 @@ variable "disk_size" {
5656
default = 50
5757
}
5858

59-
# @group "Basic"
59+
# @group "AWS"
6060
variable "key_name" {
6161
type = string
6262
description = "AWS key name"

0 commit comments

Comments
 (0)