Skip to content

Commit

Permalink
Update is_vpc.html.markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
ujjwal-ibm committed Sep 22, 2023
1 parent 5cc7b3b commit 3eb0e72
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions website/docs/r/is_vpc.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,27 @@ resource "ibm_is_vpc" "example" {
}
}
resource "ibm_is_vpc" "example_vpc_manual" {
name = "example-vpc-manual"
dns {
enable_hub = true
resolver {
manual_servers {
address ="192.168.0.4"
zone_affinity= "au-syd-1"
}
manual_servers {
address = "192.168.64.4"
zone_affinity = "au-syd-2"
}
manual_servers {
address= "192.168.128.4"
zone_affinity ="au-syd-3"
}
}
}
}
// system type resolver
resource "ibm_is_vpc" "example-system" {
name = "example-system-vpc"
Expand All @@ -62,8 +83,6 @@ resource "ibm_is_vpc" "example-system" {
}
}
```

## Timeouts
Expand Down

0 comments on commit 3eb0e72

Please sign in to comment.