github.com/SUSE/skuba@v1.4.17/ci/infra/aws/terraform.tfvars.example (about) 1 # prefix for resources 2 stack_name = "my-k8s" 3 4 # Extra tags to add to all the resources 5 #tags = { 6 # "key": "value" 7 #} 8 9 # a SSH public key for accessing the machines 10 authorized_keys = [ 11 "ssh-rsa AAAAB3NzaC1yc2EA...", 12 ] 13 14 # AWS region 15 # A list of region names can be found here: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions 16 aws_region = "eu-central-1" 17 18 # access key for AWS services 19 aws_access_key = "AKIXU..." 20 21 # secret key used for AWS services 22 aws_secret_key = "ORd..." 23 24 ## To register CaaSP product please use ONLY ONE of the following method 25 # - register against SUSE Customer Service, with SUSE CaaSP Product Registration Code 26 # - register against local SUSE Repository Mirroring Server 27 # 28 # SUSE CaaSP Product Registration Code: 29 #caasp_registry_code = "" 30 # 31 # SUSE Repository Mirroring Server Name (FQDN): 32 #rmt_server_name = "rmt.example.com" 33 34 # List of VPC IDs to join via VPC peer link 35 #peer_vpc_ids = ["vpc-id1", "vpc-id2"] 36 37 # Name of the IAM profile to associate to control plane nodes. 38 # Leave empty to have terraform create one. 39 # This is required to have AWS CPI support working properly. 40 # 41 # Note well: you must have the right set of permissions. 42 # iam_profile_master = "caasp-k8s-master-vm-profile" 43 44 # Name of the IAM profile to associate to worker nodes 45 # Leave empty to have terraform create one. 46 # This is required to have AWS CPI support working properly. 47 # 48 # Note well: you must have the right set of permissions. 49 # iam_profile_worker = "caasp-k8s-worker-vm-profile"