Guest User

Untitled

a guest
Jan 16th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. data "aws_vpc" "myvpc" {
  2.  
  3. tags = {
  4. Name = "demovpc"
  5. }
  6.  
  7. }
  8.  
  9. resource "aws_subnet" "demosubnet" {
  10.  
  11. vpc_id = "${data.aws_vpc.myvpc.id}"
  12. cidr_block = "${var.subnet_cidr_range}"
  13. tags = {
  14. Name = "demosubnet"
  15. }
  16. }
Add Comment
Please, Sign In to add comment