You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: website/docs/r/pi_vpn_connection.html.markdown
+31-25Lines changed: 31 additions & 25 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,34 +8,39 @@ description: |-
8
8
---
9
9
10
10
# ibm_pi_vpn_connection
11
+
12
+
~> This resource is deprecated and will be removed in the next major version. This resource has reached end of life.
13
+
11
14
Update or delete a VPN connection. For more information, about IBM power virtual server cloud, see [getting started with IBM Power Systems Virtual Servers](https://cloud.ibm.com/docs/power-iaas?topic=power-iaas-getting-started).
12
15
13
16
~> **Deprecated:**
14
17
Create VPN connection is deprecated and no longer supported. Existing `pi_vpn_connection` will still have support for `update` and `delete`. See [a new method for creating a VPN connection](https://cloud.ibm.com/docs/power-iaas?topic=power-iaas-VPN-connections)
15
18
16
-
## Example usage
19
+
## Example Usage
20
+
17
21
The following example creates a VPN Connection.
18
22
19
23
```terraform
20
-
resource "ibm_pi_vpn_connection" "example" {
21
-
pi_cloud_instance_id = "<value of the cloud_instance_id>"
Copy file name to clipboardExpand all lines: website/docs/r/pi_vpn_ike_policy.html.markdown
+31-23Lines changed: 31 additions & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,31 +8,36 @@ description: |-
8
8
---
9
9
10
10
# ibm_pi_ike_policy
11
+
12
+
~> This resource is deprecated and will be removed in the next major version. This resource has reached end of life.
13
+
11
14
Create, update, or delete a IKE Policy. For more information, about IBM power virtual server cloud, see [getting started with IBM Power Systems Virtual Servers](https://cloud.ibm.com/docs/power-iaas?topic=power-iaas-getting-started).
12
15
13
-
## Example usage
16
+
## Example Usage
17
+
14
18
The following example creates a IKE Policy.
15
19
16
20
```terraform
17
-
resource "ibm_pi_ike_policy" "example" {
18
-
pi_cloud_instance_id = "<value of the cloud_instance_id>"
19
-
pi_policy_name = "test"
20
-
pi_policy_dh_group = 1
21
-
pi_policy_encryption = "aes-256-cbc"
22
-
pi_policy_key_lifetime = 28800
23
-
pi_policy_preshared_key = "sample"
24
-
pi_policy_version = 1
25
-
pi_policy_authentication = "sha1"
26
-
}
21
+
resource "ibm_pi_ike_policy" "example" {
22
+
pi_cloud_instance_id = "<value of the cloud_instance_id>"
23
+
pi_policy_name = "test"
24
+
pi_policy_dh_group = 1
25
+
pi_policy_encryption = "aes-256-cbc"
26
+
pi_policy_key_lifetime = 28800
27
+
pi_policy_preshared_key = "sample"
28
+
pi_policy_version = 1
29
+
pi_policy_authentication = "sha1"
30
+
}
27
31
```
28
32
29
-
**Note**
30
-
* Please find [supported Regions](https://cloud.ibm.com/apidocs/power-cloud#endpoint) for endpoints.
31
-
* If a Power cloud instance is provisioned at `lon04`, The provider level attributes should be as follows:
32
-
*`region` - `lon`
33
-
*`zone` - `lon04`
33
+
### Notes
34
+
35
+
- Please find [supported Regions](https://cloud.ibm.com/apidocs/power-cloud#endpoint) for endpoints.
36
+
- If a Power cloud instance is provisioned at `lon04`, The provider level attributes should be as follows:
37
+
-`region` - `lon`
38
+
-`zone` - `lon04`
34
39
35
-
Example usage:
40
+
Example usage:
36
41
37
42
```terraform
38
43
provider "ibm" {
@@ -49,8 +54,10 @@ ibm_pi_ike_policy provides the following [timeouts](https://www.terraform.io/doc
49
54
-**update** - (Default 10 minutes) Used for updating IKE Policy.
50
55
-**delete** - (Default 10 minutes) Used for deleting IKE Policy.
51
56
52
-
## Argument reference
53
-
Review the argument references that you can specify for your resource.
57
+
## Argument Reference
58
+
59
+
Review the argument references that you can specify for your resource.
60
+
54
61
-`pi_cloud_instance_id` - (Required, String) The GUID of the service instance associated with an account.
55
62
-`pi_policy_authentication` - (Optional, String) Authentication for the IKE Policy. Supported values are `none`(Default), `sha-256`, `sha-384`, `sha1`.
56
63
-`pi_policy_dh_group` - (Required, Integer) DH group of the IKE Policy. Supported values are `1`,`2`,`5`,`14`,`19`,`20`,`24`.
@@ -60,7 +67,8 @@ Review the argument references that you can specify for your resource.
60
67
-`pi_policy_preshared_key` - (Required, String) Preshared key used in this IKE Policy (length of preshared key must be even).
61
68
-`pi_policy_version` - (Required, Integer) Version of the IKE Policy. Supported values are `1`,`2`.
62
69
63
-
## Attribute reference
70
+
## Attribute Reference
71
+
64
72
In addition to all argument reference list, you can access the following attribute reference after your resource is created.
65
73
66
74
-`id` - (String) The unique identifier of the IKE Policy. The ID is composed of `<power_instance_id>/<policy_id>`.
@@ -70,8 +78,8 @@ In addition to all argument reference list, you can access the following attribu
70
78
71
79
The `ibm_pi_ike_policy` resource can be imported by using `power_instance_id` and `policy_id`.
Copy file name to clipboardExpand all lines: website/docs/r/pi_vpn_ipsec_policy.html.markdown
+30-22Lines changed: 30 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,30 +8,35 @@ description: |-
8
8
---
9
9
10
10
# ibm_pi_ipsec_policy
11
+
12
+
~> This resource is deprecated and will be removed in the next major version. This resource has reached end of life.
13
+
11
14
Create, update, or delete a IPSec Policy. For more information, about IBM power virtual server cloud, see [getting started with IBM Power Systems Virtual Servers](https://cloud.ibm.com/docs/power-iaas?topic=power-iaas-getting-started).
12
15
13
-
## Example usage
16
+
## Example Usage
17
+
14
18
The following example creates a IPSec Policy.
15
19
16
20
```terraform
17
-
resource "ibm_pi_ipsec_policy" "example" {
18
-
pi_cloud_instance_id = "<value of the cloud_instance_id>"
19
-
pi_policy_name = "test"
20
-
pi_policy_dh_group = 1
21
-
pi_policy_encryption = "aes-256-cbc"
22
-
pi_policy_key_lifetime = 28800
23
-
pi_policy_pfs = true
24
-
pi_policy_authentication = "hmac-sha-256-128"
25
-
}
21
+
resource "ibm_pi_ipsec_policy" "example" {
22
+
pi_cloud_instance_id = "<value of the cloud_instance_id>"
23
+
pi_policy_name = "test"
24
+
pi_policy_dh_group = 1
25
+
pi_policy_encryption = "aes-256-cbc"
26
+
pi_policy_key_lifetime = 28800
27
+
pi_policy_pfs = true
28
+
pi_policy_authentication = "hmac-sha-256-128"
29
+
}
26
30
```
27
31
28
-
**Note**
29
-
* Please find [supported Regions](https://cloud.ibm.com/apidocs/power-cloud#endpoint) for endpoints.
30
-
* If a Power cloud instance is provisioned at `lon04`, The provider level attributes should be as follows:
31
-
*`region` - `lon`
32
-
*`zone` - `lon04`
32
+
### Notes
33
+
34
+
- Please find [supported Regions](https://cloud.ibm.com/apidocs/power-cloud#endpoint) for endpoints.
35
+
- If a Power cloud instance is provisioned at `lon04`, The provider level attributes should be as follows:
36
+
-`region` - `lon`
37
+
-`zone` - `lon04`
33
38
34
-
Example usage:
39
+
Example usage:
35
40
36
41
```terraform
37
42
provider "ibm" {
@@ -48,8 +53,10 @@ ibm_pi_ipsec_policy provides the following [timeouts](https://www.terraform.io/d
48
53
-**update** - (Default 10 minutes) Used for updating IPSec Policy.
49
54
-**delete** - (Default 10 minutes) Used for deleting IPSec Policy.
50
55
51
-
## Argument reference
52
-
Review the argument references that you can specify for your resource.
56
+
## Argument Reference
57
+
58
+
Review the argument references that you can specify for your resource.
59
+
53
60
-`pi_cloud_instance_id` - (Required, String) The GUID of the service instance associated with an account.
54
61
-`pi_policy_authentication` - (Optional, String) Authentication for the IPSec Policy. Supported values are `none`(Default), `hmac-sha-256-128`, `hmac-sha1-96`.
55
62
-`pi_policy_dh_group` - (Required, Integer) DH group of the IPSec Policy. Supported values are `1`,`2`,`5`,`14`,`19`,`20`,`24`.
@@ -58,7 +65,8 @@ Review the argument references that you can specify for your resource.
58
65
-`pi_policy_name` - (Required, String) Name of the IPSec Policy.
0 commit comments