Skip to content

Commit

Permalink
updating readme example
Browse files Browse the repository at this point in the history
  • Loading branch information
zricethezav committed Mar 13, 2019
1 parent 92ebb63 commit d013007
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,11 @@ resource "apigee_api_proxy_deployment" "helloworld_proxy_deployment" {
}
# A target server
resource "apigee_target_server" "helloworld_target_server" {
# NOTE: If you want to use the import functionality the resource ID must follow {target_server_name}_{environment}
resource "apigee_target_server" "helloworld_target_server_testing" {
name = "helloworld_target_server"
host = "somehost.thatexists.com"
env = "${var.env}"
env = "testing"
enabled = true
port = 8080
Expand Down

0 comments on commit d013007

Please sign in to comment.