diff --git a/docs/resources/save_config.md b/docs/resources/save_config.md index a2d006c5..de39a933 100644 --- a/docs/resources/save_config.md +++ b/docs/resources/save_config.md @@ -10,7 +10,12 @@ description: |- This resources is used to save the config which is the equivalent of doing a `copy running-config startup-config` in the device CLI. +## Example Usage +```terraform +resource "nxos_save_config" "example" { +} +``` ## Schema diff --git a/examples/resources/nxos_save_config/resource.tf b/examples/resources/nxos_save_config/resource.tf new file mode 100644 index 00000000..06f12bd5 --- /dev/null +++ b/examples/resources/nxos_save_config/resource.tf @@ -0,0 +1,2 @@ +resource "nxos_save_config" "example" { +} \ No newline at end of file