|
2 | 2 | # QuickStart VSI Landing Zone |
3 | 3 | ############################################################################## |
4 | 4 |
|
5 | | -module "quickstart_landing_zone" { |
6 | | - source = "../vsi" |
7 | | - ibmcloud_api_key = var.ibmcloud_api_key |
8 | | - prefix = var.prefix |
9 | | - region = var.region |
10 | | - ssh_public_key = var.ssh_key |
11 | | - existing_ssh_key_name = var.existing_ssh_key_name |
12 | | - tags = var.resource_tags |
13 | | - network_cidr = var.network_cidr |
14 | | - vpcs = var.vpcs |
15 | | - enable_transit_gateway = var.enable_transit_gateway |
16 | | - add_atracker_route = var.add_atracker_route |
17 | | - hs_crypto_instance_name = var.hs_crypto_instance_name |
18 | | - hs_crypto_resource_group = var.hs_crypto_resource_group |
19 | | - use_random_cos_suffix = var.use_random_cos_suffix |
20 | | - vsi_image_name = var.vsi_image_name |
21 | | - vsi_instance_profile = var.vsi_instance_profile |
22 | | - vsi_per_subnet = var.vsi_per_subnet |
23 | | - add_edge_vpc = var.add_edge_vpc |
24 | | - create_f5_network_on_management_vpc = var.create_f5_network_on_management_vpc |
25 | | - provision_teleport_in_f5 = var.provision_teleport_in_f5 |
26 | | - vpn_firewall_type = var.vpn_firewall_type |
27 | | - f5_image_name = var.f5_image_name |
28 | | - f5_instance_profile = var.f5_instance_profile |
29 | | - hostname = var.hostname |
30 | | - domain = var.domain |
31 | | - tmos_admin_password = var.tmos_admin_password |
32 | | - license_type = var.license_type |
33 | | - byol_license_basekey = var.byol_license_basekey |
34 | | - license_host = var.license_host |
35 | | - license_username = var.license_username |
36 | | - license_password = var.license_password |
37 | | - license_pool = var.license_pool |
38 | | - license_sku_keyword_1 = var.license_sku_keyword_1 |
39 | | - license_sku_keyword_2 = var.license_sku_keyword_2 |
40 | | - license_unit_of_measure = var.license_unit_of_measure |
41 | | - do_declaration_url = var.do_declaration_url |
42 | | - as3_declaration_url = var.as3_declaration_url |
43 | | - ts_declaration_url = var.ts_declaration_url |
44 | | - phone_home_url = var.phone_home_url |
45 | | - template_source = var.template_source |
46 | | - template_version = var.template_version |
47 | | - app_id = var.app_id |
48 | | - tgactive_url = var.tgactive_url |
49 | | - tgstandby_url = var.tgstandby_url |
50 | | - tgrefresh_url = var.tgrefresh_url |
51 | | - enable_f5_management_fip = var.enable_f5_management_fip |
52 | | - enable_f5_external_fip = var.enable_f5_external_fip |
53 | | - teleport_management_zones = var.teleport_management_zones |
54 | | - use_existing_appid = var.use_existing_appid |
55 | | - appid_name = var.appid_name |
56 | | - appid_resource_group = var.appid_resource_group |
57 | | - teleport_instance_profile = var.teleport_instance_profile |
58 | | - teleport_vsi_image_name = var.teleport_vsi_image_name |
59 | | - teleport_license = var.teleport_license |
60 | | - https_cert = var.https_cert |
61 | | - https_key = var.https_key |
62 | | - teleport_hostname = var.teleport_hostname |
63 | | - teleport_domain = var.teleport_domain |
64 | | - teleport_version = var.teleport_version |
65 | | - message_of_the_day = var.message_of_the_day |
66 | | - teleport_admin_email = var.teleport_admin_email |
67 | | - create_secrets_manager = var.create_secrets_manager |
68 | | - add_kms_block_storage_s2s = var.add_kms_block_storage_s2s |
69 | | - override = var.override |
70 | | - override_json_string = var.override_json_string |
| 5 | +module "landing_zone" { |
| 6 | + source = "../vsi/module" |
| 7 | + prefix = var.prefix |
| 8 | + region = var.region |
| 9 | + ibmcloud_api_key = var.ibmcloud_api_key |
| 10 | + ssh_public_key = var.ssh_key |
| 11 | + override_json_string = var.override_json_string |
| 12 | + tags = var.resource_tags |
71 | 13 | } |
0 commit comments