-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathmain.tf
More file actions
33 lines (33 loc) · 1.72 KB
/
main.tf
File metadata and controls
33 lines (33 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
module "fscloud_vsi" {
source = "../../"
resource_group_id = var.resource_group_id
prefix = var.prefix
tags = var.tags
vpc_id = var.vpc_id
subnets = var.subnets
image_id = var.image_id
ssh_key_ids = var.ssh_key_ids
machine_type = var.machine_type
vsi_per_subnet = var.vsi_per_subnet
user_data = var.user_data
skip_iam_authorization_policy = var.skip_iam_authorization_policy
boot_volume_encryption_key = var.boot_volume_encryption_key
boot_volume_size = var.boot_volume_size
use_boot_volume_key_as_default = var.use_boot_volume_key_as_default
kms_encryption_enabled = true
manage_reserved_ips = var.manage_reserved_ips
use_static_boot_volume_name = var.use_static_boot_volume_name
enable_floating_ip = var.enable_floating_ip
allow_ip_spoofing = var.allow_ip_spoofing
create_security_group = var.create_security_group
security_group = var.security_group
security_group_ids = var.security_group_ids
block_storage_volumes = var.block_storage_volumes
load_balancers = var.load_balancers
access_tags = var.access_tags
snapshot_consistency_group_id = var.snapshot_consistency_group_id
boot_volume_snapshot_crn = var.boot_volume_snapshot_crn
enable_dedicated_host = var.enable_dedicated_host
dedicated_host_id = var.dedicated_host_id
custom_vsi_volume_names = var.custom_vsi_volume_names
}