-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b7ae08f
commit c32b008
Showing
175 changed files
with
1,369 additions
and
1,019 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 |
---|---|---|
|
@@ -20,6 +20,60 @@ namespace Pulumi.Cloudflare | |
/// scope. For example, an access token that is scoped to the "example.com" | ||
/// zone needs to use the `zone_id` argument. | ||
/// | ||
/// ## Example Usage | ||
/// | ||
/// ```csharp | ||
/// using System.Collections.Generic; | ||
/// using Pulumi; | ||
/// using Cloudflare = Pulumi.Cloudflare; | ||
/// | ||
/// return await Deployment.RunAsync(() => | ||
/// { | ||
/// // Allowing access to `[email protected]` email address only | ||
/// var testGroupAccessGroup = new Cloudflare.AccessGroup("testGroupAccessGroup", new() | ||
/// { | ||
/// AccountId = "f037e56e89293a057740de681ac9abbe", | ||
/// Name = "staging group", | ||
/// Includes = new[] | ||
/// { | ||
/// new Cloudflare.Inputs.AccessGroupIncludeArgs | ||
/// { | ||
/// Emails = new[] | ||
/// { | ||
/// "[email protected]", | ||
/// }, | ||
/// }, | ||
/// }, | ||
/// }); | ||
/// | ||
/// // Allowing `[email protected]` to access but only when coming from a | ||
/// // specific IP. | ||
/// var testGroupIndex_accessGroupAccessGroup = new Cloudflare.AccessGroup("testGroupIndex/accessGroupAccessGroup", new() | ||
/// { | ||
/// AccountId = "f037e56e89293a057740de681ac9abbe", | ||
/// Name = "staging group", | ||
/// Includes = new[] | ||
/// { | ||
/// new Cloudflare.Inputs.AccessGroupIncludeArgs | ||
/// { | ||
/// Emails = new[] | ||
/// { | ||
/// "[email protected]", | ||
/// }, | ||
/// }, | ||
/// }, | ||
/// Requires = | ||
/// { | ||
/// { "ips", new[] | ||
/// { | ||
/// @var.Office_ip, | ||
/// } }, | ||
/// }, | ||
/// }); | ||
/// | ||
/// }); | ||
/// ``` | ||
/// | ||
/// ## Import | ||
/// | ||
/// ```sh | ||
|
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
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
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
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
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
Oops, something went wrong.