Skip to content

Commit

Permalink
Took Windows Pipe out to run test
Browse files Browse the repository at this point in the history
  • Loading branch information
lolli001 committed Jul 31, 2024
1 parent ca73e7a commit 904197e
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ output "password" {
value = nonsensitive(random_password.winrm.result)
}

/*
module "windows" {
source = "HappyPathway/image-pipeline/aws"
project_name = "windows-image-pipeline-demo"
Expand All @@ -146,19 +147,19 @@ module "windows" {
build_environment_variables = [
for proxy_var in keys(local.proxy_env_vars) :
{
name=proxy_var,
value=lookup(local.proxy_env_vars, proxy_var),
type = "PLAINTEXT"
name = proxy_var,
value = lookup(local.proxy_env_vars, proxy_var),
type = "PLAINTEXT"
}
]
ansible_repo = data.aws_codecommit_repository.ansible
goss_repo = data.aws_codecommit_repository.goss
goss_profile = "windows-base-test"
state = local.state_config
vpc_config = local.vpc_config
source_ami = "ami-012fffaddacaa52ff" # x86_64 compatible AMI
instance_type = "t2.xlarge" # x86_64 compatible instance type
state = local.state_config
vpc_config = local.vpc_config
source_ami = "ami-012fffaddacaa52ff" # x86_64 compatible AMI
instance_type = "t2.xlarge" # x86_64 compatible instance type
lifecycle {
prevent_destroy = true
}
Expand Down

0 comments on commit 904197e

Please sign in to comment.