Skip to content

Commit

Permalink
Shorten domain name to fit regex (#3878) (#7057)
Browse files Browse the repository at this point in the history
Signed-off-by: Modular Magician <magic-modules@google.com>
  • Loading branch information
modular-magician authored Aug 18, 2020
1 parent 955f4b4 commit 62c1239
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .changelog/3878.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:none

```
2 changes: 1 addition & 1 deletion google/resource_active_directory_domain_generated_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func TestAccActiveDirectoryDomain_activeDirectoryDomainBasicExample(t *testing.T
func testAccActiveDirectoryDomain_activeDirectoryDomainBasicExample(context map[string]interface{}) string {
return Nprintf(`
resource "google_active_directory_domain" "ad-domain" {
domain_name = ".org.com"
domain_name = "name%{random_suffix}.org.com"
locations = ["us-central1"]
reserved_ip_range = "192.168.255.0/24"
}
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/active_directory_domain.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ To get more information about Domain, see:

```hcl
resource "google_active_directory_domain" "ad-domain" {
domain_name = ".org.com"
domain_name = "name.org.com"
locations = ["us-central1"]
reserved_ip_range = "192.168.255.0/24"
}
Expand Down

0 comments on commit 62c1239

Please sign in to comment.