pulumi/pkg/codegen/internal/test/testdata/aws-webserver.pp
Pat Gavlin 2f22c1c59c
HCL2 updates (#4309)
Pulumi HCL2 IR:
- Add support for invokes
- Add support for resource options, incl. ranged resources
- Allow the apply rewriter to ignore promise-typed values
- Add tests for the binder
- Add support functions for TF: entries and range

NodeJS codegen:
- Simplify for expression codegen
- Add support for invoke codegen
- Add support for entries and range functions
- Add tests

Python codegen:
- Implement codegen for most expression types
- Add support for invoke codegen
- Add tests
2020-04-06 19:43:16 -07:00

39 lines
906 B
Puppet

// Create a new security group for port 80.
resource securityGroup "aws:ec2:SecurityGroup" {
ingress = [{
protocol = "tcp"
fromPort = 0
toPort = 0
cidrBlocks = ["0.0.0.0/0"]
}]
}
// Get the ID for the latest Amazon Linux AMI.
ami = invoke("aws:index:getAmi", {
filters = [{
name = "name"
values = ["amzn-ami-hvm-*-x86_64-ebs"]
}]
owners = ["137112412989"] // Amazon
mostRecent = true
})
// Create a simple web server using the startup script for the instance.
resource server "aws:ec2:Instance" {
tags = {
Name = "web-server-www"
}
instanceType = "t2.micro"
securityGroups = [securityGroup.name]
ami = ami.id
userData = <<-EOF
#!/bin/bash
echo "Hello, World!" > index.html
nohup python -m SimpleHTTPServer 80 &
EOF
}
// Export the resulting server's IP address and DNS name.
output publicIp { value = server.publicIp }
output publicHostName { value = server.publicDns }