Skip to content

Commit

Permalink
replaced underscore with hyphen in name
Browse files Browse the repository at this point in the history
  • Loading branch information
uibm authored and hkantare committed Nov 3, 2021
1 parent e64b4f6 commit f4d9cfe
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions website/docs/r/is_image.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ The `ibm_is_image` provides the following [Timeouts](https://www.terraform.io/do

```terraform
resource "ibm_is_image" "test_is_image1" {
name = "test_image"
name = "test-image"
href = "cos://us-south/buckettesttest/livecd.ubuntu-cpc.azure.vhd"
operating_system = "ubuntu-16-04-amd64"
encrypted_data_key = "eJxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx0="
Expand All @@ -36,7 +36,7 @@ resource "ibm_is_image" "test_is_image1" {
```
```terraform
resource "ibm_is_image" "test_is_image2" {
name = "test_image2"
name = "test-image2"
//optional field, either of (href, operating_system) or source_volume is required
Expand Down
10 changes: 5 additions & 5 deletions website/docs/r/is_lb_pool.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Create, update, or delete a VPC load balancer pool. For more information, about

```terraform
resource "ibm_is_lb_pool" "testacc_pool" {
name = "test_pool"
name = "test-pool"
lb = "addfd-gg4r4-12345"
algorithm = "round_robin"
protocol = "http"
Expand All @@ -33,7 +33,7 @@ resource "ibm_is_lb_pool" "testacc_pool" {

```terraform
resource "ibm_is_lb_pool" "testacc_pool" {
name = "test_pool"
name = "test-pool"
lb = "addfd-gg4r4-12345"
algorithm = "round_robin"
protocol = "https"
Expand All @@ -50,7 +50,7 @@ In the following example, you can create a load balancer pool with `app_cookie`

```hcl
resource "ibm_is_lb_pool" "testacc_pool" {
name = "test_pool"
name = "test-pool"
lb = "addfd-gg4r4-12345"
algorithm = "round_robin"
protocol = "https"
Expand All @@ -69,7 +69,7 @@ In the following example, you can create a load balancer pool with `http_cookie`

```hcl
resource "ibm_is_lb_pool" "testacc_pool" {
name = "test_pool"
name = "test-pool"
lb = "addfd-gg4r4-12345"
algorithm = "round_robin"
protocol = "https"
Expand All @@ -87,7 +87,7 @@ In the following example, you can create a load balancer pool with `source_ip` s

```hcl
resource "ibm_is_lb_pool" "testacc_pool" {
name = "test_pool"
name = "test-pool"
lb = "addfd-gg4r4-12345"
algorithm = "round_robin"
protocol = "https"
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/is_ssh_key.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Create, update, or delete an SSH key. The SSH key is used to access a Generation

```terraform
resource "ibm_is_ssh_key" "isExampleKey" {
name = "test_key"
name = "test-key"
public_key = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCKVmnMOlHKcZK8tpt3MP1lqOLAcqcJzhsvJcjscgVERRN7/9484SOBJ3HSKxxNG5JN8owAjy5f9yYwcUg+JaUVuytn5Pv3aeYROHGGg+5G346xaq3DAwX6Y5ykr2fvjObgncQBnuU5KHWCECO/4h8uWuwh/kfniXPVjFToc+gnkqA+3RKpAecZhFXwfalQ9mMuYGFxn+fwn8cYEApsJbsEmb0iJwPiZ5hjFC8wREuiTlhPHDgkBLOiycd20op2nXzDbHfCHInquEe/gYxEitALONxm0swBOwJZwlTDOB7C6y2dzlrtxr1L59m7pCkWI4EtTRLvleehBoj3u7jB4usR"
}
```
Expand Down
4 changes: 2 additions & 2 deletions website/docs/r/is_volume.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The following example creates a volume with 10 IOPs tier.

```terraform
resource "ibm_is_volume" "testacc_volume" {
name = "test_volume"
name = "test-volume"
profile = "10iops-tier"
zone = "us-south-1"
}
Expand All @@ -25,7 +25,7 @@ The following example creates a custom volume.

```terraform
resource "ibm_is_volume" "testacc_volume" {
name = "test_volume"
name = "test-volume"
profile = "custom"
zone = "us-south-1"
iops = 1000
Expand Down

0 comments on commit f4d9cfe

Please sign in to comment.