-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DOC-4269: Update osc-api and addprops to 1.28.7
- Loading branch information
1 parent
8fcab83
commit 3967410
Showing
9 changed files
with
84 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
argument: | ||
rename: | ||
subnet_id: | ||
name: net_id | ||
description: "The ID of the Net." | ||
attribute: | ||
add: | ||
default_route_table_id: The ID of the default route table. | ||
main: If true, the route table is the main one. | ||
route_table_id: The ID of the route table. | ||
net_id: The ID of the Net. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
### Required resources | ||
|
||
```hcl | ||
resource "outscale_net" "net01" { | ||
ip_range = "10.0.0.0/16" | ||
} | ||
resource "outscale_subnet" "subnet01" { | ||
net_id = outscale_net.net01.net_id | ||
ip_range = "10.0.0.0/18" | ||
} | ||
resource "outscale_route_table" "route_table01" { | ||
net_id = outscale_net.net01.net_id | ||
} | ||
``` | ||
|
||
### Link a main route table | ||
|
||
```hcl | ||
resource "outscale_main_route_table_link" "main" { | ||
net_id = outscale_net.net01.net_id | ||
route_table_id = outscale_route_table.route_table01.route_table_id | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
|
||
~> **Note:** On Net creation, the OUTSCALE API always creates an initial main route table. The `main_route_table_link`resource records the ID of the inital route table under the `default_route_table_id` attribute. The "Destroy" action for a `main_route_table_link` consists of resetting the original route table as the main route table for the Net. The additional route table must remain intact in order for the `main_route_table_link` destroy to work properly. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
~> **Important** Consider using the `primary_nic` argument if you plan to use the `outscale_nic_link`resource. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule osc-api
updated
2 files
+4 −74 | .github/workflows/release-osc-api.yml | |
+7,565 −535 | outscale.yaml |
Submodule osc-api-deploy
updated
11 files
+29 −0 | .github/scripts/release-check-duplicate.sh | |
+26 −0 | .github/scripts/release-pr.sh | |
+26 −0 | .github/scripts/release-push.sh | |
+36 −0 | .github/workflows/build.yml | |
+38 −0 | README.md | |
+21 −0 | build.sh | |
+29 −0 | hacks/patch-nooneof.rb | |
+3 −0 | hacks/patch.rb | |
+10,867 −2,905 | old-outscale.yaml | |
+22,880 −0 | outscale-java.yaml | |
+7,706 −523 | outscale.yaml |