You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
instance_profile = var.instance_profile ==null?"${var.project_name}-instance-profile": var.instance_profile # IAM instance profile for the EC2 instance.
8
+
aws_account_id = data.aws_caller_identity.current.account_id, # AWS account ID where resources will be provisioned.
9
+
region = local.vpc_config.region, # AWS region where resources will be provisioned.
10
+
subnets =join(",", local.vpc_config.subnets), # Comma-separated list of subnet IDs.
11
+
security_group_ids =join(",", local.vpc_config.security_group_ids), # Comma-separated list of security group IDs.
12
+
vpc_id = local.vpc_config.vpc_id, # VPC ID where resources will be provisioned.
13
+
goss_profile = var.goss_profile, # GOSS profile for server testing.
14
+
goss_binary = var.goss_binary, # GOSS binary for server testing.
15
+
playbook = var.playbook, # Ansible playbook for configuration management.
0 commit comments