index.html 270 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081140821408314084140851408614087140881408914090140911409214093140941409514096140971409814099141001410114102141031410414105141061410714108141091411014111141121411314114141151411614117141181411914120141211412214123141241412514126141271412814129141301413114132141331413414135141361413714138141391414014141141421414314144141451414614147141481414914150141511415214153141541415514156141571415814159141601416114162141631416414165141661416714168141691417014171141721417314174141751417614177141781417914180141811418214183141841418514186141871418814189141901419114192141931419414195141961419714198141991420014201142021420314204142051420614207142081420914210142111421214213142141421514216142171421814219142201422114222142231422414225142261422714228142291423014231142321423314234142351423614237142381423914240142411424214243142441424514246142471424814249142501425114252142531425414255142561425714258142591426014261142621426314264142651426614267142681426914270142711427214273142741427514276142771427814279142801428114282142831428414285142861428714288142891429014291142921429314294142951429614297142981429914300143011430214303143041430514306143071430814309143101431114312143131431414315143161431714318143191432014321143221432314324143251432614327143281432914330143311433214333143341433514336143371433814339143401434114342143431434414345143461434714348143491435014351143521435314354143551435614357143581435914360143611436214363143641436514366143671436814369143701437114372143731437414375143761437714378143791438014381143821438314384143851438614387143881438914390143911439214393143941439514396143971439814399144001440114402144031440414405144061440714408144091441014411144121441314414144151441614417144181441914420144211442214423144241442514426144271442814429144301443114432144331443414435144361443714438144391444014441144421444314444144451444614447144481444914450144511445214453144541445514456144571445814459144601446114462144631446414465144661446714468144691447014471144721447314474144751447614477144781447914480144811448214483144841448514486144871448814489144901449114492144931449414495144961449714498144991450014501145021450314504145051450614507145081450914510145111451214513145141451514516145171451814519145201452114522145231452414525145261452714528145291453014531145321453314534145351453614537145381453914540145411454214543145441454514546145471454814549145501455114552145531455414555145561455714558145591456014561145621456314564145651456614567145681456914570145711457214573145741457514576145771457814579145801458114582145831458414585145861458714588145891459014591145921459314594145951459614597145981459914600146011460214603146041460514606146071460814609146101461114612146131461414615146161461714618146191462014621146221462314624146251462614627146281462914630146311463214633146341463514636146371463814639146401464114642146431464414645146461464714648146491465014651146521465314654146551465614657146581465914660146611466214663146641466514666146671466814669146701467114672146731467414675146761467714678146791468014681146821468314684146851468614687146881468914690146911469214693146941469514696146971469814699147001470114702147031470414705147061470714708147091471014711147121471314714147151471614717147181471914720147211472214723147241472514726147271472814729147301473114732147331473414735147361473714738147391474014741147421474314744147451474614747147481474914750147511475214753147541475514756147571475814759147601476114762147631476414765147661476714768147691477014771147721477314774147751477614777147781477914780147811478214783147841478514786147871478814789147901479114792147931479414795147961479714798147991480014801148021480314804148051480614807148081480914810148111481214813148141481514816148171481814819148201482114822148231482414825148261482714828148291483014831148321483314834148351483614837148381483914840148411484214843148441484514846148471484814849148501485114852148531485414855148561485714858148591486014861148621486314864148651486614867148681486914870148711487214873148741487514876148771487814879148801488114882148831488414885148861488714888148891489014891148921489314894148951489614897148981489914900149011490214903149041490514906149071490814909149101491114912149131491414915149161491714918149191492014921149221492314924149251492614927149281492914930149311493214933149341493514936149371493814939149401494114942149431494414945149461494714948149491495014951149521495314954149551495614957149581495914960149611496214963149641496514966149671496814969149701497114972149731497414975149761497714978149791498014981149821498314984149851498614987149881498914990149911499214993149941499514996149971499814999150001500115002150031500415005150061500715008150091501015011150121501315014150151501615017150181501915020150211502215023150241502515026150271502815029150301503115032150331503415035150361503715038150391504015041150421504315044150451504615047150481504915050150511505215053150541505515056150571505815059150601506115062150631506415065150661506715068150691507015071150721507315074150751507615077150781507915080150811508215083150841508515086150871508815089150901509115092150931509415095150961509715098150991510015101151021510315104151051510615107151081510915110151111511215113151141511515116151171511815119151201512115122151231512415125151261512715128151291513015131151321513315134151351513615137151381513915140151411514215143151441514515146151471514815149151501515115152151531515415155151561515715158151591516015161151621516315164151651516615167151681516915170151711517215173151741517515176151771517815179151801518115182151831518415185151861518715188151891519015191151921519315194151951519615197151981519915200152011520215203152041520515206152071520815209152101521115212152131521415215152161521715218152191522015221152221522315224152251522615227152281522915230152311523215233152341523515236152371523815239152401524115242152431524415245152461524715248152491525015251152521525315254152551525615257152581525915260152611526215263152641526515266152671526815269152701527115272152731527415275152761527715278152791528015281152821528315284152851528615287152881528915290152911529215293152941529515296152971529815299153001530115302153031530415305153061530715308153091531015311153121531315314153151531615317153181531915320153211532215323153241532515326153271532815329153301533115332153331533415335153361533715338153391534015341153421534315344153451534615347153481534915350153511535215353153541535515356153571535815359153601536115362
  1. <!doctype html>
  2. <html lang="en" class="no-js">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1">
  6. <link rel="prev" href="../generator/sshkey/">
  7. <link rel="next" href="../controller-options/">
  8. <link rel="icon" href="../../pictures/eso-round-logo.svg">
  9. <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.6.18">
  10. <title>API specification - External Secrets Operator</title>
  11. <link rel="stylesheet" href="../../assets/stylesheets/main.7e37652d.min.css">
  12. <link rel="stylesheet" href="../../assets/stylesheets/palette.06af60db.min.css">
  13. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  14. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i%7CRoboto+Mono:400,400i,700,700i&display=fallback">
  15. <style>:root{--md-text-font:"Roboto";--md-code-font:"Roboto Mono"}</style>
  16. <script>__md_scope=new URL("../..",location),__md_hash=e=>[...e].reduce(((e,_)=>(e<<5)-e+_.charCodeAt(0)),0),__md_get=(e,_=localStorage,t=__md_scope)=>JSON.parse(_.getItem(t.pathname+"."+e)),__md_set=(e,_,t=localStorage,a=__md_scope)=>{try{t.setItem(a.pathname+"."+e,JSON.stringify(_))}catch(e){}}</script>
  17. <script id="__analytics">function __md_analytics(){function e(){dataLayer.push(arguments)}window.dataLayer=window.dataLayer||[],e("js",new Date),e("config","G-QP38TD8K7V"),document.addEventListener("DOMContentLoaded",(function(){document.forms.search&&document.forms.search.query.addEventListener("blur",(function(){this.value&&e("event","search",{search_term:this.value})}));document$.subscribe((function(){var t=document.forms.feedback;if(void 0!==t)for(var a of t.querySelectorAll("[type=submit]"))a.addEventListener("click",(function(a){a.preventDefault();var n=document.location.pathname,d=this.getAttribute("data-md-value");e("event","feedback",{page:n,data:d}),t.firstElementChild.disabled=!0;var r=t.querySelector(".md-feedback__note [data-md-value='"+d+"']");r&&(r.hidden=!1)})),t.hidden=!1})),location$.subscribe((function(t){e("config","G-QP38TD8K7V",{page_path:t.pathname})}))}));var t=document.createElement("script");t.async=!0,t.src="https://www.googletagmanager.com/gtag/js?id=G-QP38TD8K7V",document.getElementById("__analytics").insertAdjacentElement("afterEnd",t)}</script>
  18. <script>"undefined"!=typeof __md_analytics&&__md_analytics()</script>
  19. </head>
  20. <body dir="ltr" data-md-color-scheme="default" data-md-color-primary="indigo" data-md-color-accent="indigo">
  21. <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off">
  22. <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
  23. <label class="md-overlay" for="__drawer"></label>
  24. <div data-md-component="skip">
  25. </div>
  26. <div data-md-component="announce">
  27. </div>
  28. <div data-md-color-scheme="default" data-md-component="outdated" hidden>
  29. <aside class="md-banner md-banner--warning">
  30. <div class="md-banner__inner md-grid md-typeset">
  31. You're not viewing the latest version.
  32. <a href="../../..">
  33. <strong>Click here to go to latest.</strong>
  34. </a>
  35. </div>
  36. <script>var el=document.querySelector("[data-md-component=outdated]"),base=new URL("../.."),outdated=__md_get("__outdated",sessionStorage,base);!0===outdated&&el&&(el.hidden=!1)</script>
  37. </aside>
  38. </div>
  39. <header class="md-header" data-md-component="header">
  40. <nav class="md-header__inner md-grid" aria-label="Header">
  41. <a href="../.." title="External Secrets Operator" class="md-header__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  42. <img src="../../pictures/eso-round-logo.svg" alt="logo">
  43. </a>
  44. <label class="md-header__button md-icon" for="__drawer">
  45. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3zm0 5h18v2H3zm0 5h18v2H3z"/></svg>
  46. </label>
  47. <div class="md-header__title" data-md-component="header-title">
  48. <div class="md-header__ellipsis">
  49. <div class="md-header__topic">
  50. <span class="md-ellipsis">
  51. External Secrets Operator
  52. </span>
  53. </div>
  54. <div class="md-header__topic" data-md-component="header-topic">
  55. <span class="md-ellipsis">
  56. API specification
  57. </span>
  58. </div>
  59. </div>
  60. </div>
  61. <form class="md-header__option" data-md-component="palette">
  62. <input class="md-option" data-md-color-media="(prefers-color-scheme: light)" data-md-color-scheme="default" data-md-color-primary="indigo" data-md-color-accent="indigo" aria-label="Switch to dark mode" type="radio" name="__palette" id="__palette_0">
  63. <label class="md-header__button md-icon" title="Switch to dark mode" for="__palette_1" hidden>
  64. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4m0 10a6 6 0 0 1-6-6 6 6 0 0 1 6-6 6 6 0 0 1 6 6 6 6 0 0 1-6 6m8-9.31V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12z"/></svg>
  65. </label>
  66. <input class="md-option" data-md-color-media="(prefers-color-scheme: dark)" data-md-color-scheme="slate" data-md-color-primary="indigo" data-md-color-accent="indigo" aria-label="Switch to light mode" type="radio" name="__palette" id="__palette_1">
  67. <label class="md-header__button md-icon" title="Switch to light mode" for="__palette_0" hidden>
  68. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18c-.89 0-1.74-.2-2.5-.55C11.56 16.5 13 14.42 13 12s-1.44-4.5-3.5-5.45C10.26 6.2 11.11 6 12 6a6 6 0 0 1 6 6 6 6 0 0 1-6 6m8-9.31V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12z"/></svg>
  69. </label>
  70. </form>
  71. <script>var palette=__md_get("__palette");if(palette&&palette.color){if("(prefers-color-scheme)"===palette.color.media){var media=matchMedia("(prefers-color-scheme: light)"),input=document.querySelector(media.matches?"[data-md-color-media='(prefers-color-scheme: light)']":"[data-md-color-media='(prefers-color-scheme: dark)']");palette.color.media=input.getAttribute("data-md-color-media"),palette.color.scheme=input.getAttribute("data-md-color-scheme"),palette.color.primary=input.getAttribute("data-md-color-primary"),palette.color.accent=input.getAttribute("data-md-color-accent")}for(var[key,value]of Object.entries(palette.color))document.body.setAttribute("data-md-color-"+key,value)}</script>
  72. <label class="md-header__button md-icon" for="__search">
  73. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.52 6.52 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5"/></svg>
  74. </label>
  75. <div class="md-search" data-md-component="search" role="dialog">
  76. <label class="md-search__overlay" for="__search"></label>
  77. <div class="md-search__inner" role="search">
  78. <form class="md-search__form" name="search">
  79. <input type="text" class="md-search__input" name="query" aria-label="Search" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="search-query" required>
  80. <label class="md-search__icon md-icon" for="__search">
  81. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.52 6.52 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5"/></svg>
  82. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11z"/></svg>
  83. </label>
  84. <nav class="md-search__options" aria-label="Search">
  85. <button type="reset" class="md-search__icon md-icon" title="Clear" aria-label="Clear" tabindex="-1">
  86. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>
  87. </button>
  88. </nav>
  89. </form>
  90. <div class="md-search__output">
  91. <div class="md-search__scrollwrap" tabindex="0" data-md-scrollfix>
  92. <div class="md-search-result" data-md-component="search-result">
  93. <div class="md-search-result__meta">
  94. Initializing search
  95. </div>
  96. <ol class="md-search-result__list" role="presentation"></ol>
  97. </div>
  98. </div>
  99. </div>
  100. </div>
  101. </div>
  102. <div class="md-header__source">
  103. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  104. <div class="md-source__icon md-icon">
  105. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2025 Fonticons, Inc.--><path fill="currentColor" d="M439.6 236.1 244 40.5c-5.4-5.5-12.8-8.5-20.4-8.5s-15 3-20.4 8.4L162.5 81l51.5 51.5c27.1-9.1 52.7 16.8 43.4 43.7l49.7 49.7c34.2-11.8 61.2 31 35.5 56.7-26.5 26.5-70.2-2.9-56-37.3L240.3 199v121.9c25.3 12.5 22.3 41.8 9.1 55-6.4 6.4-15.2 10.1-24.3 10.1s-17.8-3.6-24.3-10.1c-17.6-17.6-11.1-46.9 11.2-56v-123c-20.8-8.5-24.6-30.7-18.6-45L142.6 101 8.5 235.1C3 240.6 0 247.9 0 255.5s3 15 8.5 20.4l195.6 195.7c5.4 5.4 12.7 8.4 20.4 8.4s15-3 20.4-8.4l194.7-194.7c5.4-5.4 8.4-12.8 8.4-20.4s-3-15-8.4-20.4"/></svg>
  106. </div>
  107. <div class="md-source__repository">
  108. External Secrets Operator
  109. </div>
  110. </a>
  111. </div>
  112. </nav>
  113. </header>
  114. <div class="md-container" data-md-component="container">
  115. <nav class="md-tabs" aria-label="Tabs" data-md-component="tabs">
  116. <div class="md-grid">
  117. <ul class="md-tabs__list">
  118. <li class="md-tabs__item">
  119. <a href="../.." class="md-tabs__link">
  120. Introduction
  121. </a>
  122. </li>
  123. <li class="md-tabs__item md-tabs__item--active">
  124. <a href="../components/" class="md-tabs__link">
  125. API
  126. </a>
  127. </li>
  128. <li class="md-tabs__item">
  129. <a href="../../guides/introduction/" class="md-tabs__link">
  130. Guides
  131. </a>
  132. </li>
  133. <li class="md-tabs__item">
  134. <a href="../../provider/aws-secrets-manager/" class="md-tabs__link">
  135. Provider
  136. </a>
  137. </li>
  138. <li class="md-tabs__item">
  139. <a href="../../examples/gitops-using-fluxcd/" class="md-tabs__link">
  140. Examples
  141. </a>
  142. </li>
  143. <li class="md-tabs__item">
  144. <a href="../../contributing/devguide/" class="md-tabs__link">
  145. Community
  146. </a>
  147. </li>
  148. </ul>
  149. </div>
  150. </nav>
  151. <main class="md-main" data-md-component="main">
  152. <div class="md-main__inner md-grid">
  153. <div class="md-sidebar md-sidebar--primary" data-md-component="sidebar" data-md-type="navigation" >
  154. <div class="md-sidebar__scrollwrap">
  155. <div class="md-sidebar__inner">
  156. <nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
  157. <label class="md-nav__title" for="__drawer">
  158. <a href="../.." title="External Secrets Operator" class="md-nav__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  159. <img src="../../pictures/eso-round-logo.svg" alt="logo">
  160. </a>
  161. External Secrets Operator
  162. </label>
  163. <div class="md-nav__source">
  164. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  165. <div class="md-source__icon md-icon">
  166. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2025 Fonticons, Inc.--><path fill="currentColor" d="M439.6 236.1 244 40.5c-5.4-5.5-12.8-8.5-20.4-8.5s-15 3-20.4 8.4L162.5 81l51.5 51.5c27.1-9.1 52.7 16.8 43.4 43.7l49.7 49.7c34.2-11.8 61.2 31 35.5 56.7-26.5 26.5-70.2-2.9-56-37.3L240.3 199v121.9c25.3 12.5 22.3 41.8 9.1 55-6.4 6.4-15.2 10.1-24.3 10.1s-17.8-3.6-24.3-10.1c-17.6-17.6-11.1-46.9 11.2-56v-123c-20.8-8.5-24.6-30.7-18.6-45L142.6 101 8.5 235.1C3 240.6 0 247.9 0 255.5s3 15 8.5 20.4l195.6 195.7c5.4 5.4 12.7 8.4 20.4 8.4s15-3 20.4-8.4l194.7-194.7c5.4-5.4 8.4-12.8 8.4-20.4s-3-15-8.4-20.4"/></svg>
  167. </div>
  168. <div class="md-source__repository">
  169. External Secrets Operator
  170. </div>
  171. </a>
  172. </div>
  173. <ul class="md-nav__list" data-md-scrollfix>
  174. <li class="md-nav__item md-nav__item--nested">
  175. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_1" >
  176. <div class="md-nav__link md-nav__container">
  177. <a href="../.." class="md-nav__link ">
  178. <span class="md-ellipsis">
  179. Introduction
  180. </span>
  181. </a>
  182. <label class="md-nav__link " for="__nav_1" id="__nav_1_label" tabindex="0">
  183. <span class="md-nav__icon md-icon"></span>
  184. </label>
  185. </div>
  186. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_1_label" aria-expanded="false">
  187. <label class="md-nav__title" for="__nav_1">
  188. <span class="md-nav__icon md-icon"></span>
  189. Introduction
  190. </label>
  191. <ul class="md-nav__list" data-md-scrollfix>
  192. <li class="md-nav__item">
  193. <a href="../../introduction/overview/" class="md-nav__link">
  194. <span class="md-ellipsis">
  195. Overview
  196. </span>
  197. </a>
  198. </li>
  199. <li class="md-nav__item">
  200. <a href="../../introduction/glossary/" class="md-nav__link">
  201. <span class="md-ellipsis">
  202. Glossary
  203. </span>
  204. </a>
  205. </li>
  206. <li class="md-nav__item">
  207. <a href="../../introduction/prerequisites/" class="md-nav__link">
  208. <span class="md-ellipsis">
  209. Prerequisites
  210. </span>
  211. </a>
  212. </li>
  213. <li class="md-nav__item">
  214. <a href="../../introduction/getting-started/" class="md-nav__link">
  215. <span class="md-ellipsis">
  216. Getting started
  217. </span>
  218. </a>
  219. </li>
  220. <li class="md-nav__item">
  221. <a href="../../introduction/faq/" class="md-nav__link">
  222. <span class="md-ellipsis">
  223. FAQ
  224. </span>
  225. </a>
  226. </li>
  227. <li class="md-nav__item">
  228. <a href="../../introduction/stability-support/" class="md-nav__link">
  229. <span class="md-ellipsis">
  230. Stability and Support
  231. </span>
  232. </a>
  233. </li>
  234. <li class="md-nav__item">
  235. <a href="../../introduction/deprecation-policy/" class="md-nav__link">
  236. <span class="md-ellipsis">
  237. Deprecation Policy
  238. </span>
  239. </a>
  240. </li>
  241. </ul>
  242. </nav>
  243. </li>
  244. <li class="md-nav__item md-nav__item--active md-nav__item--section md-nav__item--nested">
  245. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2" checked>
  246. <label class="md-nav__link" for="__nav_2" id="__nav_2_label" tabindex="">
  247. <span class="md-ellipsis">
  248. API
  249. </span>
  250. <span class="md-nav__icon md-icon"></span>
  251. </label>
  252. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_2_label" aria-expanded="true">
  253. <label class="md-nav__title" for="__nav_2">
  254. <span class="md-nav__icon md-icon"></span>
  255. API
  256. </label>
  257. <ul class="md-nav__list" data-md-scrollfix>
  258. <li class="md-nav__item">
  259. <a href="../components/" class="md-nav__link">
  260. <span class="md-ellipsis">
  261. Components
  262. </span>
  263. </a>
  264. </li>
  265. <li class="md-nav__item md-nav__item--nested">
  266. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_2" >
  267. <label class="md-nav__link" for="__nav_2_2" id="__nav_2_2_label" tabindex="0">
  268. <span class="md-ellipsis">
  269. Core Resources
  270. </span>
  271. <span class="md-nav__icon md-icon"></span>
  272. </label>
  273. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_2_label" aria-expanded="false">
  274. <label class="md-nav__title" for="__nav_2_2">
  275. <span class="md-nav__icon md-icon"></span>
  276. Core Resources
  277. </label>
  278. <ul class="md-nav__list" data-md-scrollfix>
  279. <li class="md-nav__item">
  280. <a href="../externalsecret/" class="md-nav__link">
  281. <span class="md-ellipsis">
  282. ExternalSecret
  283. </span>
  284. </a>
  285. </li>
  286. <li class="md-nav__item">
  287. <a href="../secretstore/" class="md-nav__link">
  288. <span class="md-ellipsis">
  289. SecretStore
  290. </span>
  291. </a>
  292. </li>
  293. <li class="md-nav__item">
  294. <a href="../clustersecretstore/" class="md-nav__link">
  295. <span class="md-ellipsis">
  296. ClusterSecretStore
  297. </span>
  298. </a>
  299. </li>
  300. <li class="md-nav__item">
  301. <a href="../clusterexternalsecret/" class="md-nav__link">
  302. <span class="md-ellipsis">
  303. ClusterExternalSecret
  304. </span>
  305. </a>
  306. </li>
  307. <li class="md-nav__item">
  308. <a href="../clusterpushsecret/" class="md-nav__link">
  309. <span class="md-ellipsis">
  310. ClusterPushSecret
  311. </span>
  312. </a>
  313. </li>
  314. <li class="md-nav__item">
  315. <a href="../pushsecret/" class="md-nav__link">
  316. <span class="md-ellipsis">
  317. PushSecret
  318. </span>
  319. </a>
  320. </li>
  321. </ul>
  322. </nav>
  323. </li>
  324. <li class="md-nav__item md-nav__item--nested">
  325. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_3" >
  326. <div class="md-nav__link md-nav__container">
  327. <a href="../generator/" class="md-nav__link ">
  328. <span class="md-ellipsis">
  329. Generators
  330. </span>
  331. </a>
  332. <label class="md-nav__link " for="__nav_2_3" id="__nav_2_3_label" tabindex="0">
  333. <span class="md-nav__icon md-icon"></span>
  334. </label>
  335. </div>
  336. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_3_label" aria-expanded="false">
  337. <label class="md-nav__title" for="__nav_2_3">
  338. <span class="md-nav__icon md-icon"></span>
  339. Generators
  340. </label>
  341. <ul class="md-nav__list" data-md-scrollfix>
  342. <li class="md-nav__item">
  343. <a href="../generator/acr/" class="md-nav__link">
  344. <span class="md-ellipsis">
  345. Azure Container Registry
  346. </span>
  347. </a>
  348. </li>
  349. <li class="md-nav__item">
  350. <a href="../generator/ecr/" class="md-nav__link">
  351. <span class="md-ellipsis">
  352. AWS Elastic Container Registry
  353. </span>
  354. </a>
  355. </li>
  356. <li class="md-nav__item">
  357. <a href="../generator/sts/" class="md-nav__link">
  358. <span class="md-ellipsis">
  359. AWS STS Session Token
  360. </span>
  361. </a>
  362. </li>
  363. <li class="md-nav__item">
  364. <a href="../generator/cluster/" class="md-nav__link">
  365. <span class="md-ellipsis">
  366. Cluster Generator
  367. </span>
  368. </a>
  369. </li>
  370. <li class="md-nav__item">
  371. <a href="../generator/gcr/" class="md-nav__link">
  372. <span class="md-ellipsis">
  373. Google Container Registry
  374. </span>
  375. </a>
  376. </li>
  377. <li class="md-nav__item">
  378. <a href="../generator/quay/" class="md-nav__link">
  379. <span class="md-ellipsis">
  380. Quay
  381. </span>
  382. </a>
  383. </li>
  384. <li class="md-nav__item">
  385. <a href="../generator/vault/" class="md-nav__link">
  386. <span class="md-ellipsis">
  387. Vault Dynamic Secret
  388. </span>
  389. </a>
  390. </li>
  391. <li class="md-nav__item">
  392. <a href="../generator/password/" class="md-nav__link">
  393. <span class="md-ellipsis">
  394. Password
  395. </span>
  396. </a>
  397. </li>
  398. <li class="md-nav__item">
  399. <a href="../generator/fake/" class="md-nav__link">
  400. <span class="md-ellipsis">
  401. Fake
  402. </span>
  403. </a>
  404. </li>
  405. <li class="md-nav__item">
  406. <a href="../generator/webhook/" class="md-nav__link">
  407. <span class="md-ellipsis">
  408. Webhook
  409. </span>
  410. </a>
  411. </li>
  412. <li class="md-nav__item">
  413. <a href="../generator/github/" class="md-nav__link">
  414. <span class="md-ellipsis">
  415. Github
  416. </span>
  417. </a>
  418. </li>
  419. <li class="md-nav__item">
  420. <a href="../generator/uuid/" class="md-nav__link">
  421. <span class="md-ellipsis">
  422. UUID
  423. </span>
  424. </a>
  425. </li>
  426. <li class="md-nav__item">
  427. <a href="../generator/mfa/" class="md-nav__link">
  428. <span class="md-ellipsis">
  429. MFA
  430. </span>
  431. </a>
  432. </li>
  433. <li class="md-nav__item">
  434. <a href="../generator/sshkey/" class="md-nav__link">
  435. <span class="md-ellipsis">
  436. SSHKey
  437. </span>
  438. </a>
  439. </li>
  440. </ul>
  441. </nav>
  442. </li>
  443. <li class="md-nav__item md-nav__item--active md-nav__item--nested">
  444. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" checked>
  445. <label class="md-nav__link" for="__nav_2_4" id="__nav_2_4_label" tabindex="0">
  446. <span class="md-ellipsis">
  447. Reference Docs
  448. </span>
  449. <span class="md-nav__icon md-icon"></span>
  450. </label>
  451. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_4_label" aria-expanded="true">
  452. <label class="md-nav__title" for="__nav_2_4">
  453. <span class="md-nav__icon md-icon"></span>
  454. Reference Docs
  455. </label>
  456. <ul class="md-nav__list" data-md-scrollfix>
  457. <li class="md-nav__item md-nav__item--active">
  458. <input class="md-nav__toggle md-toggle" type="checkbox" id="__toc">
  459. <a href="./" class="md-nav__link md-nav__link--active">
  460. <span class="md-ellipsis">
  461. API specification
  462. </span>
  463. </a>
  464. </li>
  465. <li class="md-nav__item">
  466. <a href="../controller-options/" class="md-nav__link">
  467. <span class="md-ellipsis">
  468. Controller Options
  469. </span>
  470. </a>
  471. </li>
  472. <li class="md-nav__item">
  473. <a href="../metrics/" class="md-nav__link">
  474. <span class="md-ellipsis">
  475. Metrics
  476. </span>
  477. </a>
  478. </li>
  479. <li class="md-nav__item">
  480. <a href="../selectable-fields/" class="md-nav__link">
  481. <span class="md-ellipsis">
  482. Selectable Fields
  483. </span>
  484. </a>
  485. </li>
  486. </ul>
  487. </nav>
  488. </li>
  489. </ul>
  490. </nav>
  491. </li>
  492. <li class="md-nav__item md-nav__item--nested">
  493. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3" >
  494. <label class="md-nav__link" for="__nav_3" id="__nav_3_label" tabindex="0">
  495. <span class="md-ellipsis">
  496. Guides
  497. </span>
  498. <span class="md-nav__icon md-icon"></span>
  499. </label>
  500. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_3_label" aria-expanded="false">
  501. <label class="md-nav__title" for="__nav_3">
  502. <span class="md-nav__icon md-icon"></span>
  503. Guides
  504. </label>
  505. <ul class="md-nav__list" data-md-scrollfix>
  506. <li class="md-nav__item">
  507. <a href="../../guides/introduction/" class="md-nav__link">
  508. <span class="md-ellipsis">
  509. Introduction
  510. </span>
  511. </a>
  512. </li>
  513. <li class="md-nav__item md-nav__item--nested">
  514. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2" >
  515. <label class="md-nav__link" for="__nav_3_2" id="__nav_3_2_label" tabindex="0">
  516. <span class="md-ellipsis">
  517. External Secrets
  518. </span>
  519. <span class="md-nav__icon md-icon"></span>
  520. </label>
  521. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_2_label" aria-expanded="false">
  522. <label class="md-nav__title" for="__nav_3_2">
  523. <span class="md-nav__icon md-icon"></span>
  524. External Secrets
  525. </label>
  526. <ul class="md-nav__list" data-md-scrollfix>
  527. <li class="md-nav__item">
  528. <a href="../../guides/all-keys-one-secret/" class="md-nav__link">
  529. <span class="md-ellipsis">
  530. Extract structured data
  531. </span>
  532. </a>
  533. </li>
  534. <li class="md-nav__item">
  535. <a href="../../guides/getallsecrets/" class="md-nav__link">
  536. <span class="md-ellipsis">
  537. Find Secrets by Name or Metadata
  538. </span>
  539. </a>
  540. </li>
  541. <li class="md-nav__item">
  542. <a href="../../guides/datafrom-rewrite/" class="md-nav__link">
  543. <span class="md-ellipsis">
  544. Rewriting Keys
  545. </span>
  546. </a>
  547. </li>
  548. <li class="md-nav__item md-nav__item--nested">
  549. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2_4" >
  550. <label class="md-nav__link" for="__nav_3_2_4" id="__nav_3_2_4_label" tabindex="0">
  551. <span class="md-ellipsis">
  552. Advanced Templating
  553. </span>
  554. <span class="md-nav__icon md-icon"></span>
  555. </label>
  556. <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_3_2_4_label" aria-expanded="false">
  557. <label class="md-nav__title" for="__nav_3_2_4">
  558. <span class="md-nav__icon md-icon"></span>
  559. Advanced Templating
  560. </label>
  561. <ul class="md-nav__list" data-md-scrollfix>
  562. <li class="md-nav__item">
  563. <a href="../../guides/templating/" class="md-nav__link">
  564. <span class="md-ellipsis">
  565. v2
  566. </span>
  567. </a>
  568. </li>
  569. <li class="md-nav__item">
  570. <a href="../../guides/templating-v1/" class="md-nav__link">
  571. <span class="md-ellipsis">
  572. v1
  573. </span>
  574. </a>
  575. </li>
  576. </ul>
  577. </nav>
  578. </li>
  579. <li class="md-nav__item">
  580. <a href="../../guides/common-k8s-secret-types/" class="md-nav__link">
  581. <span class="md-ellipsis">
  582. Kubernetes Secret Types
  583. </span>
  584. </a>
  585. </li>
  586. <li class="md-nav__item">
  587. <a href="../../guides/ownership-deletion-policy/" class="md-nav__link">
  588. <span class="md-ellipsis">
  589. Lifecycle: ownership & deletion
  590. </span>
  591. </a>
  592. </li>
  593. <li class="md-nav__item">
  594. <a href="../../guides/decoding-strategy/" class="md-nav__link">
  595. <span class="md-ellipsis">
  596. Decoding Strategies
  597. </span>
  598. </a>
  599. </li>
  600. <li class="md-nav__item">
  601. <a href="../../guides/controller-class/" class="md-nav__link">
  602. <span class="md-ellipsis">
  603. Controller Classes
  604. </span>
  605. </a>
  606. </li>
  607. </ul>
  608. </nav>
  609. </li>
  610. <li class="md-nav__item">
  611. <a href="../../guides/generator/" class="md-nav__link">
  612. <span class="md-ellipsis">
  613. Generators
  614. </span>
  615. </a>
  616. </li>
  617. <li class="md-nav__item">
  618. <a href="../../guides/pushsecrets/" class="md-nav__link">
  619. <span class="md-ellipsis">
  620. Push Secrets
  621. </span>
  622. </a>
  623. </li>
  624. <li class="md-nav__item md-nav__item--nested">
  625. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_5" >
  626. <label class="md-nav__link" for="__nav_3_5" id="__nav_3_5_label" tabindex="0">
  627. <span class="md-ellipsis">
  628. Operations
  629. </span>
  630. <span class="md-nav__icon md-icon"></span>
  631. </label>
  632. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_5_label" aria-expanded="false">
  633. <label class="md-nav__title" for="__nav_3_5">
  634. <span class="md-nav__icon md-icon"></span>
  635. Operations
  636. </label>
  637. <ul class="md-nav__list" data-md-scrollfix>
  638. <li class="md-nav__item">
  639. <a href="../../guides/multi-tenancy/" class="md-nav__link">
  640. <span class="md-ellipsis">
  641. Multi Tenancy
  642. </span>
  643. </a>
  644. </li>
  645. <li class="md-nav__item">
  646. <a href="../../guides/security-best-practices/" class="md-nav__link">
  647. <span class="md-ellipsis">
  648. Security Best Practices
  649. </span>
  650. </a>
  651. </li>
  652. <li class="md-nav__item">
  653. <a href="../../guides/threat-model/" class="md-nav__link">
  654. <span class="md-ellipsis">
  655. Threat Model
  656. </span>
  657. </a>
  658. </li>
  659. <li class="md-nav__item">
  660. <a href="../../guides/v1beta1/" class="md-nav__link">
  661. <span class="md-ellipsis">
  662. Upgrading to v1beta1
  663. </span>
  664. </a>
  665. </li>
  666. <li class="md-nav__item">
  667. <a href="../../guides/using-latest-image/" class="md-nav__link">
  668. <span class="md-ellipsis">
  669. Using Latest Image
  670. </span>
  671. </a>
  672. </li>
  673. <li class="md-nav__item">
  674. <a href="../../guides/disable-cluster-features/" class="md-nav__link">
  675. <span class="md-ellipsis">
  676. Disable Cluster Features
  677. </span>
  678. </a>
  679. </li>
  680. </ul>
  681. </nav>
  682. </li>
  683. <li class="md-nav__item md-nav__item--nested">
  684. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_6" >
  685. <label class="md-nav__link" for="__nav_3_6" id="__nav_3_6_label" tabindex="0">
  686. <span class="md-ellipsis">
  687. Tooling
  688. </span>
  689. <span class="md-nav__icon md-icon"></span>
  690. </label>
  691. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_6_label" aria-expanded="false">
  692. <label class="md-nav__title" for="__nav_3_6">
  693. <span class="md-nav__icon md-icon"></span>
  694. Tooling
  695. </label>
  696. <ul class="md-nav__list" data-md-scrollfix>
  697. <li class="md-nav__item">
  698. <a href="../../guides/using-esoctl-tool/" class="md-nav__link">
  699. <span class="md-ellipsis">
  700. Using the esoctl tool
  701. </span>
  702. </a>
  703. </li>
  704. </ul>
  705. </nav>
  706. </li>
  707. </ul>
  708. </nav>
  709. </li>
  710. <li class="md-nav__item md-nav__item--nested">
  711. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_4" >
  712. <label class="md-nav__link" for="__nav_4" id="__nav_4_label" tabindex="0">
  713. <span class="md-ellipsis">
  714. Provider
  715. </span>
  716. <span class="md-nav__icon md-icon"></span>
  717. </label>
  718. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_4_label" aria-expanded="false">
  719. <label class="md-nav__title" for="__nav_4">
  720. <span class="md-nav__icon md-icon"></span>
  721. Provider
  722. </label>
  723. <ul class="md-nav__list" data-md-scrollfix>
  724. <li class="md-nav__item">
  725. <a href="../../provider/aws-secrets-manager/" class="md-nav__link">
  726. <span class="md-ellipsis">
  727. AWS Secrets Manager
  728. </span>
  729. </a>
  730. </li>
  731. <li class="md-nav__item">
  732. <a href="../../provider/aws-parameter-store/" class="md-nav__link">
  733. <span class="md-ellipsis">
  734. AWS Parameter Store
  735. </span>
  736. </a>
  737. </li>
  738. <li class="md-nav__item">
  739. <a href="../../provider/azure-key-vault/" class="md-nav__link">
  740. <span class="md-ellipsis">
  741. Azure Key Vault
  742. </span>
  743. </a>
  744. </li>
  745. <li class="md-nav__item">
  746. <a href="../../provider/beyondtrust/" class="md-nav__link">
  747. <span class="md-ellipsis">
  748. BeyondTrust
  749. </span>
  750. </a>
  751. </li>
  752. <li class="md-nav__item">
  753. <a href="../../provider/bitwarden-secrets-manager/" class="md-nav__link">
  754. <span class="md-ellipsis">
  755. Bitwarden Secrets Manager
  756. </span>
  757. </a>
  758. </li>
  759. <li class="md-nav__item">
  760. <a href="../../provider/chef/" class="md-nav__link">
  761. <span class="md-ellipsis">
  762. Chef
  763. </span>
  764. </a>
  765. </li>
  766. <li class="md-nav__item">
  767. <a href="../../provider/cloudru/" class="md-nav__link">
  768. <span class="md-ellipsis">
  769. Cloud.ru Secret Manager
  770. </span>
  771. </a>
  772. </li>
  773. <li class="md-nav__item">
  774. <a href="../../provider/conjur/" class="md-nav__link">
  775. <span class="md-ellipsis">
  776. CyberArk Conjur
  777. </span>
  778. </a>
  779. </li>
  780. <li class="md-nav__item">
  781. <a href="../../provider/device42/" class="md-nav__link">
  782. <span class="md-ellipsis">
  783. Device42
  784. </span>
  785. </a>
  786. </li>
  787. <li class="md-nav__item">
  788. <a href="../../provider/google-secrets-manager/" class="md-nav__link">
  789. <span class="md-ellipsis">
  790. Google Cloud Secret Manager
  791. </span>
  792. </a>
  793. </li>
  794. <li class="md-nav__item">
  795. <a href="../../provider/hashicorp-vault/" class="md-nav__link">
  796. <span class="md-ellipsis">
  797. HashiCorp Vault
  798. </span>
  799. </a>
  800. </li>
  801. <li class="md-nav__item">
  802. <a href="../../provider/kubernetes/" class="md-nav__link">
  803. <span class="md-ellipsis">
  804. Kubernetes
  805. </span>
  806. </a>
  807. </li>
  808. <li class="md-nav__item">
  809. <a href="../../provider/ibm-secrets-manager/" class="md-nav__link">
  810. <span class="md-ellipsis">
  811. IBM Secrets Manager
  812. </span>
  813. </a>
  814. </li>
  815. <li class="md-nav__item">
  816. <a href="../../provider/akeyless/" class="md-nav__link">
  817. <span class="md-ellipsis">
  818. Akeyless
  819. </span>
  820. </a>
  821. </li>
  822. <li class="md-nav__item">
  823. <a href="../../provider/yandex-certificate-manager/" class="md-nav__link">
  824. <span class="md-ellipsis">
  825. Yandex Certificate Manager
  826. </span>
  827. </a>
  828. </li>
  829. <li class="md-nav__item">
  830. <a href="../../provider/yandex-lockbox/" class="md-nav__link">
  831. <span class="md-ellipsis">
  832. Yandex Lockbox
  833. </span>
  834. </a>
  835. </li>
  836. <li class="md-nav__item">
  837. <a href="../../provider/alibaba/" class="md-nav__link">
  838. <span class="md-ellipsis">
  839. Alibaba Cloud
  840. </span>
  841. </a>
  842. </li>
  843. <li class="md-nav__item">
  844. <a href="../../provider/gitlab-variables/" class="md-nav__link">
  845. <span class="md-ellipsis">
  846. GitLab Variables
  847. </span>
  848. </a>
  849. </li>
  850. <li class="md-nav__item">
  851. <a href="../../provider/github/" class="md-nav__link">
  852. <span class="md-ellipsis">
  853. Github Actions Secrets
  854. </span>
  855. </a>
  856. </li>
  857. <li class="md-nav__item">
  858. <a href="../../provider/oracle-vault/" class="md-nav__link">
  859. <span class="md-ellipsis">
  860. Oracle Vault
  861. </span>
  862. </a>
  863. </li>
  864. <li class="md-nav__item">
  865. <a href="../../provider/1password-automation/" class="md-nav__link">
  866. <span class="md-ellipsis">
  867. 1Password Connect Server
  868. </span>
  869. </a>
  870. </li>
  871. <li class="md-nav__item">
  872. <a href="../../provider/1password-sdk/" class="md-nav__link">
  873. <span class="md-ellipsis">
  874. 1Password SDK
  875. </span>
  876. </a>
  877. </li>
  878. <li class="md-nav__item">
  879. <a href="../../provider/webhook/" class="md-nav__link">
  880. <span class="md-ellipsis">
  881. Webhook
  882. </span>
  883. </a>
  884. </li>
  885. <li class="md-nav__item">
  886. <a href="../../provider/fake/" class="md-nav__link">
  887. <span class="md-ellipsis">
  888. Fake
  889. </span>
  890. </a>
  891. </li>
  892. <li class="md-nav__item">
  893. <a href="../../provider/senhasegura-dsm/" class="md-nav__link">
  894. <span class="md-ellipsis">
  895. senhasegura DevOps Secrets Management (DSM)
  896. </span>
  897. </a>
  898. </li>
  899. <li class="md-nav__item">
  900. <a href="../../provider/doppler/" class="md-nav__link">
  901. <span class="md-ellipsis">
  902. Doppler
  903. </span>
  904. </a>
  905. </li>
  906. <li class="md-nav__item">
  907. <a href="../../provider/keeper-security/" class="md-nav__link">
  908. <span class="md-ellipsis">
  909. Keeper Security
  910. </span>
  911. </a>
  912. </li>
  913. <li class="md-nav__item">
  914. <a href="../../provider/cloak/" class="md-nav__link">
  915. <span class="md-ellipsis">
  916. Cloak End 2 End Encrypted Secrets
  917. </span>
  918. </a>
  919. </li>
  920. <li class="md-nav__item">
  921. <a href="../../provider/scaleway/" class="md-nav__link">
  922. <span class="md-ellipsis">
  923. Scaleway
  924. </span>
  925. </a>
  926. </li>
  927. <li class="md-nav__item">
  928. <a href="../../provider/delinea/" class="md-nav__link">
  929. <span class="md-ellipsis">
  930. Delinea
  931. </span>
  932. </a>
  933. </li>
  934. <li class="md-nav__item">
  935. <a href="../../provider/secretserver/" class="md-nav__link">
  936. <span class="md-ellipsis">
  937. Secret Server
  938. </span>
  939. </a>
  940. </li>
  941. <li class="md-nav__item">
  942. <a href="../../provider/passbolt/" class="md-nav__link">
  943. <span class="md-ellipsis">
  944. Passbolt
  945. </span>
  946. </a>
  947. </li>
  948. <li class="md-nav__item">
  949. <a href="../../provider/pulumi/" class="md-nav__link">
  950. <span class="md-ellipsis">
  951. Pulumi ESC
  952. </span>
  953. </a>
  954. </li>
  955. <li class="md-nav__item">
  956. <a href="../../provider/onboardbase/" class="md-nav__link">
  957. <span class="md-ellipsis">
  958. Onboardbase
  959. </span>
  960. </a>
  961. </li>
  962. <li class="md-nav__item">
  963. <a href="../../provider-passworddepot/" class="md-nav__link">
  964. <span class="md-ellipsis">
  965. Password Depot
  966. </span>
  967. </a>
  968. </li>
  969. <li class="md-nav__item">
  970. <a href="../../provider/fortanix/" class="md-nav__link">
  971. <span class="md-ellipsis">
  972. Fortanix
  973. </span>
  974. </a>
  975. </li>
  976. <li class="md-nav__item">
  977. <a href="../../provider/infisical/" class="md-nav__link">
  978. <span class="md-ellipsis">
  979. Infisical
  980. </span>
  981. </a>
  982. </li>
  983. <li class="md-nav__item">
  984. <a href="../../provider/previder/" class="md-nav__link">
  985. <span class="md-ellipsis">
  986. Previder
  987. </span>
  988. </a>
  989. </li>
  990. <li class="md-nav__item">
  991. <a href="../../provider/openbao/" class="md-nav__link">
  992. <span class="md-ellipsis">
  993. OpenBao
  994. </span>
  995. </a>
  996. </li>
  997. </ul>
  998. </nav>
  999. </li>
  1000. <li class="md-nav__item md-nav__item--nested">
  1001. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_5" >
  1002. <label class="md-nav__link" for="__nav_5" id="__nav_5_label" tabindex="0">
  1003. <span class="md-ellipsis">
  1004. Examples
  1005. </span>
  1006. <span class="md-nav__icon md-icon"></span>
  1007. </label>
  1008. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_5_label" aria-expanded="false">
  1009. <label class="md-nav__title" for="__nav_5">
  1010. <span class="md-nav__icon md-icon"></span>
  1011. Examples
  1012. </label>
  1013. <ul class="md-nav__list" data-md-scrollfix>
  1014. <li class="md-nav__item">
  1015. <a href="../../examples/gitops-using-fluxcd/" class="md-nav__link">
  1016. <span class="md-ellipsis">
  1017. FluxCD
  1018. </span>
  1019. </a>
  1020. </li>
  1021. <li class="md-nav__item">
  1022. <a href="../../examples/anchore-engine-credentials/" class="md-nav__link">
  1023. <span class="md-ellipsis">
  1024. Anchore Engine
  1025. </span>
  1026. </a>
  1027. </li>
  1028. <li class="md-nav__item">
  1029. <a href="../../examples/jenkins-kubernetes-credentials/" class="md-nav__link">
  1030. <span class="md-ellipsis">
  1031. Jenkins
  1032. </span>
  1033. </a>
  1034. </li>
  1035. <li class="md-nav__item">
  1036. <a href="../../examples/bitwarden/" class="md-nav__link">
  1037. <span class="md-ellipsis">
  1038. Bitwarden
  1039. </span>
  1040. </a>
  1041. </li>
  1042. </ul>
  1043. </nav>
  1044. </li>
  1045. <li class="md-nav__item md-nav__item--nested">
  1046. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6" >
  1047. <label class="md-nav__link" for="__nav_6" id="__nav_6_label" tabindex="0">
  1048. <span class="md-ellipsis">
  1049. Community
  1050. </span>
  1051. <span class="md-nav__icon md-icon"></span>
  1052. </label>
  1053. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_6_label" aria-expanded="false">
  1054. <label class="md-nav__title" for="__nav_6">
  1055. <span class="md-nav__icon md-icon"></span>
  1056. Community
  1057. </label>
  1058. <ul class="md-nav__list" data-md-scrollfix>
  1059. <li class="md-nav__item md-nav__item--nested">
  1060. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_1" >
  1061. <label class="md-nav__link" for="__nav_6_1" id="__nav_6_1_label" tabindex="0">
  1062. <span class="md-ellipsis">
  1063. Contributing
  1064. </span>
  1065. <span class="md-nav__icon md-icon"></span>
  1066. </label>
  1067. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_1_label" aria-expanded="false">
  1068. <label class="md-nav__title" for="__nav_6_1">
  1069. <span class="md-nav__icon md-icon"></span>
  1070. Contributing
  1071. </label>
  1072. <ul class="md-nav__list" data-md-scrollfix>
  1073. <li class="md-nav__item">
  1074. <a href="../../contributing/devguide/" class="md-nav__link">
  1075. <span class="md-ellipsis">
  1076. Developer guide
  1077. </span>
  1078. </a>
  1079. </li>
  1080. <li class="md-nav__item">
  1081. <a href="../../contributing/process/" class="md-nav__link">
  1082. <span class="md-ellipsis">
  1083. Contributing Process
  1084. </span>
  1085. </a>
  1086. </li>
  1087. <li class="md-nav__item">
  1088. <a href="../../contributing/release/" class="md-nav__link">
  1089. <span class="md-ellipsis">
  1090. Release Process
  1091. </span>
  1092. </a>
  1093. </li>
  1094. <li class="md-nav__item">
  1095. <a href="../../contributing/coc/" class="md-nav__link">
  1096. <span class="md-ellipsis">
  1097. Code of Conduct
  1098. </span>
  1099. </a>
  1100. </li>
  1101. <li class="md-nav__item">
  1102. <a href="../../contributing/calendar/" class="md-nav__link">
  1103. <span class="md-ellipsis">
  1104. Community meetings calendar
  1105. </span>
  1106. </a>
  1107. </li>
  1108. <li class="md-nav__item">
  1109. <a href="../../contributing/roadmap/" class="md-nav__link">
  1110. <span class="md-ellipsis">
  1111. Roadmap
  1112. </span>
  1113. </a>
  1114. </li>
  1115. </ul>
  1116. </nav>
  1117. </li>
  1118. <li class="md-nav__item md-nav__item--nested">
  1119. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_2" >
  1120. <label class="md-nav__link" for="__nav_6_2" id="__nav_6_2_label" tabindex="0">
  1121. <span class="md-ellipsis">
  1122. External Resources
  1123. </span>
  1124. <span class="md-nav__icon md-icon"></span>
  1125. </label>
  1126. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_2_label" aria-expanded="false">
  1127. <label class="md-nav__title" for="__nav_6_2">
  1128. <span class="md-nav__icon md-icon"></span>
  1129. External Resources
  1130. </label>
  1131. <ul class="md-nav__list" data-md-scrollfix>
  1132. <li class="md-nav__item">
  1133. <a href="../../eso-talks/" class="md-nav__link">
  1134. <span class="md-ellipsis">
  1135. Talks
  1136. </span>
  1137. </a>
  1138. </li>
  1139. <li class="md-nav__item">
  1140. <a href="../../eso-demos/" class="md-nav__link">
  1141. <span class="md-ellipsis">
  1142. Demos
  1143. </span>
  1144. </a>
  1145. </li>
  1146. <li class="md-nav__item">
  1147. <a href="../../eso-blogs/" class="md-nav__link">
  1148. <span class="md-ellipsis">
  1149. Blogs
  1150. </span>
  1151. </a>
  1152. </li>
  1153. <li class="md-nav__item">
  1154. <a href="../../eso-tools/" class="md-nav__link">
  1155. <span class="md-ellipsis">
  1156. Tools
  1157. </span>
  1158. </a>
  1159. </li>
  1160. </ul>
  1161. </nav>
  1162. </li>
  1163. </ul>
  1164. </nav>
  1165. </li>
  1166. </ul>
  1167. </nav>
  1168. </div>
  1169. </div>
  1170. </div>
  1171. <div class="md-sidebar md-sidebar--secondary" data-md-component="sidebar" data-md-type="toc" >
  1172. <div class="md-sidebar__scrollwrap">
  1173. <div class="md-sidebar__inner">
  1174. <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
  1175. </nav>
  1176. </div>
  1177. </div>
  1178. </div>
  1179. <div class="md-content" data-md-component="content">
  1180. <article class="md-content__inner md-typeset">
  1181. <h1>API specification</h1>
  1182. <p>Packages:</p>
  1183. <ul>
  1184. <li>
  1185. <a href="#external-secrets.io%2fv1">external-secrets.io/v1</a>
  1186. </li>
  1187. </ul>
  1188. <h2 id="external-secrets.io/v1">external-secrets.io/v1</h2>
  1189. <p>
  1190. <p>Package v1 contains resources for external-secrets</p>
  1191. </p>
  1192. <p>Resource Types:</p>
  1193. <ul></ul>
  1194. <h3 id="external-secrets.io/v1.AWSAuth">AWSAuth
  1195. </h3>
  1196. <p>
  1197. (<em>Appears on:</em>
  1198. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  1199. </p>
  1200. <p>
  1201. <p>AWSAuth tells the controller how to do authentication with aws.
  1202. Only one of secretRef or jwt can be specified.
  1203. if none is specified the controller will load credentials using the aws sdk defaults.</p>
  1204. </p>
  1205. <table>
  1206. <thead>
  1207. <tr>
  1208. <th>Field</th>
  1209. <th>Description</th>
  1210. </tr>
  1211. </thead>
  1212. <tbody>
  1213. <tr>
  1214. <td>
  1215. <code>secretRef</code></br>
  1216. <em>
  1217. <a href="#external-secrets.io/v1.AWSAuthSecretRef">
  1218. AWSAuthSecretRef
  1219. </a>
  1220. </em>
  1221. </td>
  1222. <td>
  1223. <em>(Optional)</em>
  1224. </td>
  1225. </tr>
  1226. <tr>
  1227. <td>
  1228. <code>jwt</code></br>
  1229. <em>
  1230. <a href="#external-secrets.io/v1.AWSJWTAuth">
  1231. AWSJWTAuth
  1232. </a>
  1233. </em>
  1234. </td>
  1235. <td>
  1236. <em>(Optional)</em>
  1237. </td>
  1238. </tr>
  1239. </tbody>
  1240. </table>
  1241. <h3 id="external-secrets.io/v1.AWSAuthSecretRef">AWSAuthSecretRef
  1242. </h3>
  1243. <p>
  1244. (<em>Appears on:</em>
  1245. <a href="#external-secrets.io/v1.AWSAuth">AWSAuth</a>)
  1246. </p>
  1247. <p>
  1248. <p>AWSAuthSecretRef holds secret references for AWS credentials
  1249. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  1250. </p>
  1251. <table>
  1252. <thead>
  1253. <tr>
  1254. <th>Field</th>
  1255. <th>Description</th>
  1256. </tr>
  1257. </thead>
  1258. <tbody>
  1259. <tr>
  1260. <td>
  1261. <code>accessKeyIDSecretRef</code></br>
  1262. <em>
  1263. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1264. External Secrets meta/v1.SecretKeySelector
  1265. </a>
  1266. </em>
  1267. </td>
  1268. <td>
  1269. <p>The AccessKeyID is used for authentication</p>
  1270. </td>
  1271. </tr>
  1272. <tr>
  1273. <td>
  1274. <code>secretAccessKeySecretRef</code></br>
  1275. <em>
  1276. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1277. External Secrets meta/v1.SecretKeySelector
  1278. </a>
  1279. </em>
  1280. </td>
  1281. <td>
  1282. <p>The SecretAccessKey is used for authentication</p>
  1283. </td>
  1284. </tr>
  1285. <tr>
  1286. <td>
  1287. <code>sessionTokenSecretRef</code></br>
  1288. <em>
  1289. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1290. External Secrets meta/v1.SecretKeySelector
  1291. </a>
  1292. </em>
  1293. </td>
  1294. <td>
  1295. <p>The SessionToken used for authentication
  1296. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  1297. see: <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html</a></p>
  1298. </td>
  1299. </tr>
  1300. </tbody>
  1301. </table>
  1302. <h3 id="external-secrets.io/v1.AWSJWTAuth">AWSJWTAuth
  1303. </h3>
  1304. <p>
  1305. (<em>Appears on:</em>
  1306. <a href="#external-secrets.io/v1.AWSAuth">AWSAuth</a>)
  1307. </p>
  1308. <p>
  1309. <p>Authenticate against AWS using service account tokens.</p>
  1310. </p>
  1311. <table>
  1312. <thead>
  1313. <tr>
  1314. <th>Field</th>
  1315. <th>Description</th>
  1316. </tr>
  1317. </thead>
  1318. <tbody>
  1319. <tr>
  1320. <td>
  1321. <code>serviceAccountRef</code></br>
  1322. <em>
  1323. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1324. External Secrets meta/v1.ServiceAccountSelector
  1325. </a>
  1326. </em>
  1327. </td>
  1328. <td>
  1329. </td>
  1330. </tr>
  1331. </tbody>
  1332. </table>
  1333. <h3 id="external-secrets.io/v1.AWSProvider">AWSProvider
  1334. </h3>
  1335. <p>
  1336. (<em>Appears on:</em>
  1337. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1338. </p>
  1339. <p>
  1340. <p>AWSProvider configures a store to sync secrets with AWS.</p>
  1341. </p>
  1342. <table>
  1343. <thead>
  1344. <tr>
  1345. <th>Field</th>
  1346. <th>Description</th>
  1347. </tr>
  1348. </thead>
  1349. <tbody>
  1350. <tr>
  1351. <td>
  1352. <code>service</code></br>
  1353. <em>
  1354. <a href="#external-secrets.io/v1.AWSServiceType">
  1355. AWSServiceType
  1356. </a>
  1357. </em>
  1358. </td>
  1359. <td>
  1360. <p>Service defines which service should be used to fetch the secrets</p>
  1361. </td>
  1362. </tr>
  1363. <tr>
  1364. <td>
  1365. <code>auth</code></br>
  1366. <em>
  1367. <a href="#external-secrets.io/v1.AWSAuth">
  1368. AWSAuth
  1369. </a>
  1370. </em>
  1371. </td>
  1372. <td>
  1373. <em>(Optional)</em>
  1374. <p>Auth defines the information necessary to authenticate against AWS
  1375. if not set aws sdk will infer credentials from your environment
  1376. see: <a href="https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials">https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials</a></p>
  1377. </td>
  1378. </tr>
  1379. <tr>
  1380. <td>
  1381. <code>role</code></br>
  1382. <em>
  1383. string
  1384. </em>
  1385. </td>
  1386. <td>
  1387. <em>(Optional)</em>
  1388. <p>Role is a Role ARN which the provider will assume</p>
  1389. </td>
  1390. </tr>
  1391. <tr>
  1392. <td>
  1393. <code>region</code></br>
  1394. <em>
  1395. string
  1396. </em>
  1397. </td>
  1398. <td>
  1399. <p>AWS Region to be used for the provider</p>
  1400. </td>
  1401. </tr>
  1402. <tr>
  1403. <td>
  1404. <code>additionalRoles</code></br>
  1405. <em>
  1406. []string
  1407. </em>
  1408. </td>
  1409. <td>
  1410. <em>(Optional)</em>
  1411. <p>AdditionalRoles is a chained list of Role ARNs which the provider will sequentially assume before assuming the Role</p>
  1412. </td>
  1413. </tr>
  1414. <tr>
  1415. <td>
  1416. <code>externalID</code></br>
  1417. <em>
  1418. string
  1419. </em>
  1420. </td>
  1421. <td>
  1422. <p>AWS External ID set on assumed IAM roles</p>
  1423. </td>
  1424. </tr>
  1425. <tr>
  1426. <td>
  1427. <code>sessionTags</code></br>
  1428. <em>
  1429. <a href="#external-secrets.io/v1.*github.com/external-secrets/external-secrets/apis/externalsecrets/v1.Tag">
  1430. []*github.com/external-secrets/external-secrets/apis/externalsecrets/v1.Tag
  1431. </a>
  1432. </em>
  1433. </td>
  1434. <td>
  1435. <em>(Optional)</em>
  1436. <p>AWS STS assume role session tags</p>
  1437. </td>
  1438. </tr>
  1439. <tr>
  1440. <td>
  1441. <code>secretsManager</code></br>
  1442. <em>
  1443. <a href="#external-secrets.io/v1.SecretsManager">
  1444. SecretsManager
  1445. </a>
  1446. </em>
  1447. </td>
  1448. <td>
  1449. <em>(Optional)</em>
  1450. <p>SecretsManager defines how the provider behaves when interacting with AWS SecretsManager</p>
  1451. </td>
  1452. </tr>
  1453. <tr>
  1454. <td>
  1455. <code>transitiveTagKeys</code></br>
  1456. <em>
  1457. []string
  1458. </em>
  1459. </td>
  1460. <td>
  1461. <em>(Optional)</em>
  1462. <p>AWS STS assume role transitive session tags. Required when multiple rules are used with the provider</p>
  1463. </td>
  1464. </tr>
  1465. <tr>
  1466. <td>
  1467. <code>prefix</code></br>
  1468. <em>
  1469. string
  1470. </em>
  1471. </td>
  1472. <td>
  1473. <em>(Optional)</em>
  1474. <p>Prefix adds a prefix to all retrieved values.</p>
  1475. </td>
  1476. </tr>
  1477. </tbody>
  1478. </table>
  1479. <h3 id="external-secrets.io/v1.AWSServiceType">AWSServiceType
  1480. (<code>string</code> alias)</p></h3>
  1481. <p>
  1482. (<em>Appears on:</em>
  1483. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  1484. </p>
  1485. <p>
  1486. <p>AWSServiceType is a enum that defines the service/API that is used to fetch the secrets.</p>
  1487. </p>
  1488. <table>
  1489. <thead>
  1490. <tr>
  1491. <th>Value</th>
  1492. <th>Description</th>
  1493. </tr>
  1494. </thead>
  1495. <tbody><tr><td><p>&#34;ParameterStore&#34;</p></td>
  1496. <td><p>AWSServiceParameterStore is the AWS SystemsManager ParameterStore service.
  1497. see: <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html">https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html</a></p>
  1498. </td>
  1499. </tr><tr><td><p>&#34;SecretsManager&#34;</p></td>
  1500. <td><p>AWSServiceSecretsManager is the AWS SecretsManager service.
  1501. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html">https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html</a></p>
  1502. </td>
  1503. </tr></tbody>
  1504. </table>
  1505. <h3 id="external-secrets.io/v1.AkeylessAuth">AkeylessAuth
  1506. </h3>
  1507. <p>
  1508. (<em>Appears on:</em>
  1509. <a href="#external-secrets.io/v1.AkeylessProvider">AkeylessProvider</a>)
  1510. </p>
  1511. <p>
  1512. </p>
  1513. <table>
  1514. <thead>
  1515. <tr>
  1516. <th>Field</th>
  1517. <th>Description</th>
  1518. </tr>
  1519. </thead>
  1520. <tbody>
  1521. <tr>
  1522. <td>
  1523. <code>secretRef</code></br>
  1524. <em>
  1525. <a href="#external-secrets.io/v1.AkeylessAuthSecretRef">
  1526. AkeylessAuthSecretRef
  1527. </a>
  1528. </em>
  1529. </td>
  1530. <td>
  1531. <em>(Optional)</em>
  1532. <p>Reference to a Secret that contains the details
  1533. to authenticate with Akeyless.</p>
  1534. </td>
  1535. </tr>
  1536. <tr>
  1537. <td>
  1538. <code>kubernetesAuth</code></br>
  1539. <em>
  1540. <a href="#external-secrets.io/v1.AkeylessKubernetesAuth">
  1541. AkeylessKubernetesAuth
  1542. </a>
  1543. </em>
  1544. </td>
  1545. <td>
  1546. <em>(Optional)</em>
  1547. <p>Kubernetes authenticates with Akeyless by passing the ServiceAccount
  1548. token stored in the named Secret resource.</p>
  1549. </td>
  1550. </tr>
  1551. </tbody>
  1552. </table>
  1553. <h3 id="external-secrets.io/v1.AkeylessAuthSecretRef">AkeylessAuthSecretRef
  1554. </h3>
  1555. <p>
  1556. (<em>Appears on:</em>
  1557. <a href="#external-secrets.io/v1.AkeylessAuth">AkeylessAuth</a>)
  1558. </p>
  1559. <p>
  1560. <p>AkeylessAuthSecretRef
  1561. AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.</p>
  1562. </p>
  1563. <table>
  1564. <thead>
  1565. <tr>
  1566. <th>Field</th>
  1567. <th>Description</th>
  1568. </tr>
  1569. </thead>
  1570. <tbody>
  1571. <tr>
  1572. <td>
  1573. <code>accessID</code></br>
  1574. <em>
  1575. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1576. External Secrets meta/v1.SecretKeySelector
  1577. </a>
  1578. </em>
  1579. </td>
  1580. <td>
  1581. <p>The SecretAccessID is used for authentication</p>
  1582. </td>
  1583. </tr>
  1584. <tr>
  1585. <td>
  1586. <code>accessType</code></br>
  1587. <em>
  1588. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1589. External Secrets meta/v1.SecretKeySelector
  1590. </a>
  1591. </em>
  1592. </td>
  1593. <td>
  1594. </td>
  1595. </tr>
  1596. <tr>
  1597. <td>
  1598. <code>accessTypeParam</code></br>
  1599. <em>
  1600. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1601. External Secrets meta/v1.SecretKeySelector
  1602. </a>
  1603. </em>
  1604. </td>
  1605. <td>
  1606. </td>
  1607. </tr>
  1608. </tbody>
  1609. </table>
  1610. <h3 id="external-secrets.io/v1.AkeylessKubernetesAuth">AkeylessKubernetesAuth
  1611. </h3>
  1612. <p>
  1613. (<em>Appears on:</em>
  1614. <a href="#external-secrets.io/v1.AkeylessAuth">AkeylessAuth</a>)
  1615. </p>
  1616. <p>
  1617. <p>Authenticate with Kubernetes ServiceAccount token stored.</p>
  1618. </p>
  1619. <table>
  1620. <thead>
  1621. <tr>
  1622. <th>Field</th>
  1623. <th>Description</th>
  1624. </tr>
  1625. </thead>
  1626. <tbody>
  1627. <tr>
  1628. <td>
  1629. <code>accessID</code></br>
  1630. <em>
  1631. string
  1632. </em>
  1633. </td>
  1634. <td>
  1635. <p>the Akeyless Kubernetes auth-method access-id</p>
  1636. </td>
  1637. </tr>
  1638. <tr>
  1639. <td>
  1640. <code>k8sConfName</code></br>
  1641. <em>
  1642. string
  1643. </em>
  1644. </td>
  1645. <td>
  1646. <p>Kubernetes-auth configuration name in Akeyless-Gateway</p>
  1647. </td>
  1648. </tr>
  1649. <tr>
  1650. <td>
  1651. <code>serviceAccountRef</code></br>
  1652. <em>
  1653. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1654. External Secrets meta/v1.ServiceAccountSelector
  1655. </a>
  1656. </em>
  1657. </td>
  1658. <td>
  1659. <em>(Optional)</em>
  1660. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  1661. If the service account is specified, the service account secret token JWT will be used
  1662. for authenticating with Akeyless. If the service account selector is not supplied,
  1663. the secretRef will be used instead.</p>
  1664. </td>
  1665. </tr>
  1666. <tr>
  1667. <td>
  1668. <code>secretRef</code></br>
  1669. <em>
  1670. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1671. External Secrets meta/v1.SecretKeySelector
  1672. </a>
  1673. </em>
  1674. </td>
  1675. <td>
  1676. <em>(Optional)</em>
  1677. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  1678. for authenticating with Akeyless. If a name is specified without a key,
  1679. <code>token</code> is the default. If one is not specified, the one bound to
  1680. the controller will be used.</p>
  1681. </td>
  1682. </tr>
  1683. </tbody>
  1684. </table>
  1685. <h3 id="external-secrets.io/v1.AkeylessProvider">AkeylessProvider
  1686. </h3>
  1687. <p>
  1688. (<em>Appears on:</em>
  1689. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1690. </p>
  1691. <p>
  1692. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  1693. </p>
  1694. <table>
  1695. <thead>
  1696. <tr>
  1697. <th>Field</th>
  1698. <th>Description</th>
  1699. </tr>
  1700. </thead>
  1701. <tbody>
  1702. <tr>
  1703. <td>
  1704. <code>akeylessGWApiURL</code></br>
  1705. <em>
  1706. string
  1707. </em>
  1708. </td>
  1709. <td>
  1710. <p>Akeyless GW API Url from which the secrets to be fetched from.</p>
  1711. </td>
  1712. </tr>
  1713. <tr>
  1714. <td>
  1715. <code>authSecretRef</code></br>
  1716. <em>
  1717. <a href="#external-secrets.io/v1.AkeylessAuth">
  1718. AkeylessAuth
  1719. </a>
  1720. </em>
  1721. </td>
  1722. <td>
  1723. <p>Auth configures how the operator authenticates with Akeyless.</p>
  1724. </td>
  1725. </tr>
  1726. <tr>
  1727. <td>
  1728. <code>caBundle</code></br>
  1729. <em>
  1730. []byte
  1731. </em>
  1732. </td>
  1733. <td>
  1734. <em>(Optional)</em>
  1735. <p>PEM/base64 encoded CA bundle used to validate Akeyless Gateway certificate. Only used
  1736. if the AkeylessGWApiURL URL is using HTTPS protocol. If not set the system root certificates
  1737. are used to validate the TLS connection.</p>
  1738. </td>
  1739. </tr>
  1740. <tr>
  1741. <td>
  1742. <code>caProvider</code></br>
  1743. <em>
  1744. <a href="#external-secrets.io/v1.CAProvider">
  1745. CAProvider
  1746. </a>
  1747. </em>
  1748. </td>
  1749. <td>
  1750. <em>(Optional)</em>
  1751. <p>The provider for the CA bundle to use to validate Akeyless Gateway certificate.</p>
  1752. </td>
  1753. </tr>
  1754. </tbody>
  1755. </table>
  1756. <h3 id="external-secrets.io/v1.AlibabaAuth">AlibabaAuth
  1757. </h3>
  1758. <p>
  1759. (<em>Appears on:</em>
  1760. <a href="#external-secrets.io/v1.AlibabaProvider">AlibabaProvider</a>)
  1761. </p>
  1762. <p>
  1763. <p>AlibabaAuth contains a secretRef for credentials.</p>
  1764. </p>
  1765. <table>
  1766. <thead>
  1767. <tr>
  1768. <th>Field</th>
  1769. <th>Description</th>
  1770. </tr>
  1771. </thead>
  1772. <tbody>
  1773. <tr>
  1774. <td>
  1775. <code>secretRef</code></br>
  1776. <em>
  1777. <a href="#external-secrets.io/v1.AlibabaAuthSecretRef">
  1778. AlibabaAuthSecretRef
  1779. </a>
  1780. </em>
  1781. </td>
  1782. <td>
  1783. <em>(Optional)</em>
  1784. </td>
  1785. </tr>
  1786. <tr>
  1787. <td>
  1788. <code>rrsa</code></br>
  1789. <em>
  1790. <a href="#external-secrets.io/v1.AlibabaRRSAAuth">
  1791. AlibabaRRSAAuth
  1792. </a>
  1793. </em>
  1794. </td>
  1795. <td>
  1796. <em>(Optional)</em>
  1797. </td>
  1798. </tr>
  1799. </tbody>
  1800. </table>
  1801. <h3 id="external-secrets.io/v1.AlibabaAuthSecretRef">AlibabaAuthSecretRef
  1802. </h3>
  1803. <p>
  1804. (<em>Appears on:</em>
  1805. <a href="#external-secrets.io/v1.AlibabaAuth">AlibabaAuth</a>)
  1806. </p>
  1807. <p>
  1808. <p>AlibabaAuthSecretRef holds secret references for Alibaba credentials.</p>
  1809. </p>
  1810. <table>
  1811. <thead>
  1812. <tr>
  1813. <th>Field</th>
  1814. <th>Description</th>
  1815. </tr>
  1816. </thead>
  1817. <tbody>
  1818. <tr>
  1819. <td>
  1820. <code>accessKeyIDSecretRef</code></br>
  1821. <em>
  1822. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1823. External Secrets meta/v1.SecretKeySelector
  1824. </a>
  1825. </em>
  1826. </td>
  1827. <td>
  1828. <p>The AccessKeyID is used for authentication</p>
  1829. </td>
  1830. </tr>
  1831. <tr>
  1832. <td>
  1833. <code>accessKeySecretSecretRef</code></br>
  1834. <em>
  1835. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1836. External Secrets meta/v1.SecretKeySelector
  1837. </a>
  1838. </em>
  1839. </td>
  1840. <td>
  1841. <p>The AccessKeySecret is used for authentication</p>
  1842. </td>
  1843. </tr>
  1844. </tbody>
  1845. </table>
  1846. <h3 id="external-secrets.io/v1.AlibabaProvider">AlibabaProvider
  1847. </h3>
  1848. <p>
  1849. (<em>Appears on:</em>
  1850. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1851. </p>
  1852. <p>
  1853. <p>AlibabaProvider configures a store to sync secrets using the Alibaba Secret Manager provider.</p>
  1854. </p>
  1855. <table>
  1856. <thead>
  1857. <tr>
  1858. <th>Field</th>
  1859. <th>Description</th>
  1860. </tr>
  1861. </thead>
  1862. <tbody>
  1863. <tr>
  1864. <td>
  1865. <code>auth</code></br>
  1866. <em>
  1867. <a href="#external-secrets.io/v1.AlibabaAuth">
  1868. AlibabaAuth
  1869. </a>
  1870. </em>
  1871. </td>
  1872. <td>
  1873. </td>
  1874. </tr>
  1875. <tr>
  1876. <td>
  1877. <code>regionID</code></br>
  1878. <em>
  1879. string
  1880. </em>
  1881. </td>
  1882. <td>
  1883. <p>Alibaba Region to be used for the provider</p>
  1884. </td>
  1885. </tr>
  1886. </tbody>
  1887. </table>
  1888. <h3 id="external-secrets.io/v1.AlibabaRRSAAuth">AlibabaRRSAAuth
  1889. </h3>
  1890. <p>
  1891. (<em>Appears on:</em>
  1892. <a href="#external-secrets.io/v1.AlibabaAuth">AlibabaAuth</a>)
  1893. </p>
  1894. <p>
  1895. <p>Authenticate against Alibaba using RRSA.</p>
  1896. </p>
  1897. <table>
  1898. <thead>
  1899. <tr>
  1900. <th>Field</th>
  1901. <th>Description</th>
  1902. </tr>
  1903. </thead>
  1904. <tbody>
  1905. <tr>
  1906. <td>
  1907. <code>oidcProviderArn</code></br>
  1908. <em>
  1909. string
  1910. </em>
  1911. </td>
  1912. <td>
  1913. </td>
  1914. </tr>
  1915. <tr>
  1916. <td>
  1917. <code>oidcTokenFilePath</code></br>
  1918. <em>
  1919. string
  1920. </em>
  1921. </td>
  1922. <td>
  1923. </td>
  1924. </tr>
  1925. <tr>
  1926. <td>
  1927. <code>roleArn</code></br>
  1928. <em>
  1929. string
  1930. </em>
  1931. </td>
  1932. <td>
  1933. </td>
  1934. </tr>
  1935. <tr>
  1936. <td>
  1937. <code>sessionName</code></br>
  1938. <em>
  1939. string
  1940. </em>
  1941. </td>
  1942. <td>
  1943. </td>
  1944. </tr>
  1945. </tbody>
  1946. </table>
  1947. <h3 id="external-secrets.io/v1.AuthorizationProtocol">AuthorizationProtocol
  1948. </h3>
  1949. <p>
  1950. (<em>Appears on:</em>
  1951. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  1952. </p>
  1953. <p>
  1954. <p>AuthorizationProtocol contains the protocol-specific configuration</p>
  1955. </p>
  1956. <table>
  1957. <thead>
  1958. <tr>
  1959. <th>Field</th>
  1960. <th>Description</th>
  1961. </tr>
  1962. </thead>
  1963. <tbody>
  1964. <tr>
  1965. <td>
  1966. <code>ntlm</code></br>
  1967. <em>
  1968. <a href="#external-secrets.io/v1.NTLMProtocol">
  1969. NTLMProtocol
  1970. </a>
  1971. </em>
  1972. </td>
  1973. <td>
  1974. <em>(Optional)</em>
  1975. <p>NTLMProtocol configures the store to use NTLM for auth</p>
  1976. </td>
  1977. </tr>
  1978. </tbody>
  1979. </table>
  1980. <h3 id="external-secrets.io/v1.AwsAuthCredentials">AwsAuthCredentials
  1981. </h3>
  1982. <p>
  1983. (<em>Appears on:</em>
  1984. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  1985. </p>
  1986. <p>
  1987. </p>
  1988. <table>
  1989. <thead>
  1990. <tr>
  1991. <th>Field</th>
  1992. <th>Description</th>
  1993. </tr>
  1994. </thead>
  1995. <tbody>
  1996. <tr>
  1997. <td>
  1998. <code>identityId</code></br>
  1999. <em>
  2000. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2001. External Secrets meta/v1.SecretKeySelector
  2002. </a>
  2003. </em>
  2004. </td>
  2005. <td>
  2006. </td>
  2007. </tr>
  2008. </tbody>
  2009. </table>
  2010. <h3 id="external-secrets.io/v1.AwsCredentialsConfig">AwsCredentialsConfig
  2011. </h3>
  2012. <p>
  2013. (<em>Appears on:</em>
  2014. <a href="#external-secrets.io/v1.GCPWorkloadIdentityFederation">GCPWorkloadIdentityFederation</a>)
  2015. </p>
  2016. <p>
  2017. <p>AwsCredentialsConfig holds the region and the Secret reference which contains the AWS credentials.</p>
  2018. </p>
  2019. <table>
  2020. <thead>
  2021. <tr>
  2022. <th>Field</th>
  2023. <th>Description</th>
  2024. </tr>
  2025. </thead>
  2026. <tbody>
  2027. <tr>
  2028. <td>
  2029. <code>region</code></br>
  2030. <em>
  2031. string
  2032. </em>
  2033. </td>
  2034. <td>
  2035. <p>region is for configuring the AWS region to be used.</p>
  2036. </td>
  2037. </tr>
  2038. <tr>
  2039. <td>
  2040. <code>awsCredentialsSecretRef</code></br>
  2041. <em>
  2042. <a href="#external-secrets.io/v1.SecretReference">
  2043. SecretReference
  2044. </a>
  2045. </em>
  2046. </td>
  2047. <td>
  2048. <p>awsCredentialsSecretRef is the reference to the secret which holds the AWS credentials.
  2049. Secret should be created with below names for keys
  2050. - aws_access_key_id: Access Key ID, which is the unique identifier for the AWS account or the IAM user.
  2051. - aws_secret_access_key: Secret Access Key, which is used to authenticate requests made to AWS services.
  2052. - aws_session_token: Session Token, is the short-lived token to authenticate requests made to AWS services.</p>
  2053. </td>
  2054. </tr>
  2055. </tbody>
  2056. </table>
  2057. <h3 id="external-secrets.io/v1.AzureAuthCredentials">AzureAuthCredentials
  2058. </h3>
  2059. <p>
  2060. (<em>Appears on:</em>
  2061. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  2062. </p>
  2063. <p>
  2064. </p>
  2065. <table>
  2066. <thead>
  2067. <tr>
  2068. <th>Field</th>
  2069. <th>Description</th>
  2070. </tr>
  2071. </thead>
  2072. <tbody>
  2073. <tr>
  2074. <td>
  2075. <code>identityId</code></br>
  2076. <em>
  2077. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2078. External Secrets meta/v1.SecretKeySelector
  2079. </a>
  2080. </em>
  2081. </td>
  2082. <td>
  2083. </td>
  2084. </tr>
  2085. <tr>
  2086. <td>
  2087. <code>resource</code></br>
  2088. <em>
  2089. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2090. External Secrets meta/v1.SecretKeySelector
  2091. </a>
  2092. </em>
  2093. </td>
  2094. <td>
  2095. <em>(Optional)</em>
  2096. </td>
  2097. </tr>
  2098. </tbody>
  2099. </table>
  2100. <h3 id="external-secrets.io/v1.AzureAuthType">AzureAuthType
  2101. (<code>string</code> alias)</p></h3>
  2102. <p>
  2103. (<em>Appears on:</em>
  2104. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  2105. </p>
  2106. <p>
  2107. <p>AuthType describes how to authenticate to the Azure Keyvault
  2108. Only one of the following auth types may be specified.
  2109. If none of the following auth type is specified, the default one
  2110. is ServicePrincipal.</p>
  2111. </p>
  2112. <table>
  2113. <thead>
  2114. <tr>
  2115. <th>Value</th>
  2116. <th>Description</th>
  2117. </tr>
  2118. </thead>
  2119. <tbody><tr><td><p>&#34;ManagedIdentity&#34;</p></td>
  2120. <td><p>Using Managed Identity to authenticate. Used with aad-pod-identity installed in the cluster.</p>
  2121. </td>
  2122. </tr><tr><td><p>&#34;ServicePrincipal&#34;</p></td>
  2123. <td><p>Using service principal to authenticate, which needs a tenantId, a clientId and a clientSecret.</p>
  2124. </td>
  2125. </tr><tr><td><p>&#34;WorkloadIdentity&#34;</p></td>
  2126. <td><p>Using Workload Identity service accounts to authenticate.</p>
  2127. </td>
  2128. </tr></tbody>
  2129. </table>
  2130. <h3 id="external-secrets.io/v1.AzureEnvironmentType">AzureEnvironmentType
  2131. (<code>string</code> alias)</p></h3>
  2132. <p>
  2133. (<em>Appears on:</em>
  2134. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  2135. </p>
  2136. <p>
  2137. <p>AzureEnvironmentType specifies the Azure cloud environment endpoints to use for
  2138. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  2139. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  2140. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  2141. </p>
  2142. <table>
  2143. <thead>
  2144. <tr>
  2145. <th>Value</th>
  2146. <th>Description</th>
  2147. </tr>
  2148. </thead>
  2149. <tbody><tr><td><p>&#34;ChinaCloud&#34;</p></td>
  2150. <td></td>
  2151. </tr><tr><td><p>&#34;GermanCloud&#34;</p></td>
  2152. <td></td>
  2153. </tr><tr><td><p>&#34;PublicCloud&#34;</p></td>
  2154. <td></td>
  2155. </tr><tr><td><p>&#34;USGovernmentCloud&#34;</p></td>
  2156. <td></td>
  2157. </tr></tbody>
  2158. </table>
  2159. <h3 id="external-secrets.io/v1.AzureKVAuth">AzureKVAuth
  2160. </h3>
  2161. <p>
  2162. (<em>Appears on:</em>
  2163. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  2164. </p>
  2165. <p>
  2166. <p>Configuration used to authenticate with Azure.</p>
  2167. </p>
  2168. <table>
  2169. <thead>
  2170. <tr>
  2171. <th>Field</th>
  2172. <th>Description</th>
  2173. </tr>
  2174. </thead>
  2175. <tbody>
  2176. <tr>
  2177. <td>
  2178. <code>clientId</code></br>
  2179. <em>
  2180. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2181. External Secrets meta/v1.SecretKeySelector
  2182. </a>
  2183. </em>
  2184. </td>
  2185. <td>
  2186. <em>(Optional)</em>
  2187. <p>The Azure clientId of the service principle or managed identity used for authentication.</p>
  2188. </td>
  2189. </tr>
  2190. <tr>
  2191. <td>
  2192. <code>tenantId</code></br>
  2193. <em>
  2194. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2195. External Secrets meta/v1.SecretKeySelector
  2196. </a>
  2197. </em>
  2198. </td>
  2199. <td>
  2200. <em>(Optional)</em>
  2201. <p>The Azure tenantId of the managed identity used for authentication.</p>
  2202. </td>
  2203. </tr>
  2204. <tr>
  2205. <td>
  2206. <code>clientSecret</code></br>
  2207. <em>
  2208. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2209. External Secrets meta/v1.SecretKeySelector
  2210. </a>
  2211. </em>
  2212. </td>
  2213. <td>
  2214. <em>(Optional)</em>
  2215. <p>The Azure ClientSecret of the service principle used for authentication.</p>
  2216. </td>
  2217. </tr>
  2218. <tr>
  2219. <td>
  2220. <code>clientCertificate</code></br>
  2221. <em>
  2222. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2223. External Secrets meta/v1.SecretKeySelector
  2224. </a>
  2225. </em>
  2226. </td>
  2227. <td>
  2228. <em>(Optional)</em>
  2229. <p>The Azure ClientCertificate of the service principle used for authentication.</p>
  2230. </td>
  2231. </tr>
  2232. </tbody>
  2233. </table>
  2234. <h3 id="external-secrets.io/v1.AzureKVProvider">AzureKVProvider
  2235. </h3>
  2236. <p>
  2237. (<em>Appears on:</em>
  2238. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2239. </p>
  2240. <p>
  2241. <p>Configures an store to sync secrets using Azure KV.</p>
  2242. </p>
  2243. <table>
  2244. <thead>
  2245. <tr>
  2246. <th>Field</th>
  2247. <th>Description</th>
  2248. </tr>
  2249. </thead>
  2250. <tbody>
  2251. <tr>
  2252. <td>
  2253. <code>authType</code></br>
  2254. <em>
  2255. <a href="#external-secrets.io/v1.AzureAuthType">
  2256. AzureAuthType
  2257. </a>
  2258. </em>
  2259. </td>
  2260. <td>
  2261. <em>(Optional)</em>
  2262. <p>Auth type defines how to authenticate to the keyvault service.
  2263. Valid values are:
  2264. - &ldquo;ServicePrincipal&rdquo; (default): Using a service principal (tenantId, clientId, clientSecret)
  2265. - &ldquo;ManagedIdentity&rdquo;: Using Managed Identity assigned to the pod (see aad-pod-identity)</p>
  2266. </td>
  2267. </tr>
  2268. <tr>
  2269. <td>
  2270. <code>vaultUrl</code></br>
  2271. <em>
  2272. string
  2273. </em>
  2274. </td>
  2275. <td>
  2276. <p>Vault Url from which the secrets to be fetched from.</p>
  2277. </td>
  2278. </tr>
  2279. <tr>
  2280. <td>
  2281. <code>tenantId</code></br>
  2282. <em>
  2283. string
  2284. </em>
  2285. </td>
  2286. <td>
  2287. <em>(Optional)</em>
  2288. <p>TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  2289. </td>
  2290. </tr>
  2291. <tr>
  2292. <td>
  2293. <code>environmentType</code></br>
  2294. <em>
  2295. <a href="#external-secrets.io/v1.AzureEnvironmentType">
  2296. AzureEnvironmentType
  2297. </a>
  2298. </em>
  2299. </td>
  2300. <td>
  2301. <p>EnvironmentType specifies the Azure cloud environment endpoints to use for
  2302. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  2303. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  2304. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  2305. </td>
  2306. </tr>
  2307. <tr>
  2308. <td>
  2309. <code>authSecretRef</code></br>
  2310. <em>
  2311. <a href="#external-secrets.io/v1.AzureKVAuth">
  2312. AzureKVAuth
  2313. </a>
  2314. </em>
  2315. </td>
  2316. <td>
  2317. <em>(Optional)</em>
  2318. <p>Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  2319. </td>
  2320. </tr>
  2321. <tr>
  2322. <td>
  2323. <code>serviceAccountRef</code></br>
  2324. <em>
  2325. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  2326. External Secrets meta/v1.ServiceAccountSelector
  2327. </a>
  2328. </em>
  2329. </td>
  2330. <td>
  2331. <em>(Optional)</em>
  2332. <p>ServiceAccountRef specified the service account
  2333. that should be used when authenticating with WorkloadIdentity.</p>
  2334. </td>
  2335. </tr>
  2336. <tr>
  2337. <td>
  2338. <code>identityId</code></br>
  2339. <em>
  2340. string
  2341. </em>
  2342. </td>
  2343. <td>
  2344. <em>(Optional)</em>
  2345. <p>If multiple Managed Identity is assigned to the pod, you can select the one to be used</p>
  2346. </td>
  2347. </tr>
  2348. </tbody>
  2349. </table>
  2350. <h3 id="external-secrets.io/v1.BeyondTrustProviderSecretRef">BeyondTrustProviderSecretRef
  2351. </h3>
  2352. <p>
  2353. (<em>Appears on:</em>
  2354. <a href="#external-secrets.io/v1.BeyondtrustAuth">BeyondtrustAuth</a>)
  2355. </p>
  2356. <p>
  2357. </p>
  2358. <table>
  2359. <thead>
  2360. <tr>
  2361. <th>Field</th>
  2362. <th>Description</th>
  2363. </tr>
  2364. </thead>
  2365. <tbody>
  2366. <tr>
  2367. <td>
  2368. <code>value</code></br>
  2369. <em>
  2370. string
  2371. </em>
  2372. </td>
  2373. <td>
  2374. <em>(Optional)</em>
  2375. <p>Value can be specified directly to set a value without using a secret.</p>
  2376. </td>
  2377. </tr>
  2378. <tr>
  2379. <td>
  2380. <code>secretRef</code></br>
  2381. <em>
  2382. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2383. External Secrets meta/v1.SecretKeySelector
  2384. </a>
  2385. </em>
  2386. </td>
  2387. <td>
  2388. <em>(Optional)</em>
  2389. <p>SecretRef references a key in a secret that will be used as value.</p>
  2390. </td>
  2391. </tr>
  2392. </tbody>
  2393. </table>
  2394. <h3 id="external-secrets.io/v1.BeyondtrustAuth">BeyondtrustAuth
  2395. </h3>
  2396. <p>
  2397. (<em>Appears on:</em>
  2398. <a href="#external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider</a>)
  2399. </p>
  2400. <p>
  2401. <p>Configures a store to sync secrets using BeyondTrust Password Safe.</p>
  2402. </p>
  2403. <table>
  2404. <thead>
  2405. <tr>
  2406. <th>Field</th>
  2407. <th>Description</th>
  2408. </tr>
  2409. </thead>
  2410. <tbody>
  2411. <tr>
  2412. <td>
  2413. <code>apiKey</code></br>
  2414. <em>
  2415. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2416. BeyondTrustProviderSecretRef
  2417. </a>
  2418. </em>
  2419. </td>
  2420. <td>
  2421. <p>APIKey If not provided then ClientID/ClientSecret become required.</p>
  2422. </td>
  2423. </tr>
  2424. <tr>
  2425. <td>
  2426. <code>clientId</code></br>
  2427. <em>
  2428. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2429. BeyondTrustProviderSecretRef
  2430. </a>
  2431. </em>
  2432. </td>
  2433. <td>
  2434. <p>ClientID is the API OAuth Client ID.</p>
  2435. </td>
  2436. </tr>
  2437. <tr>
  2438. <td>
  2439. <code>clientSecret</code></br>
  2440. <em>
  2441. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2442. BeyondTrustProviderSecretRef
  2443. </a>
  2444. </em>
  2445. </td>
  2446. <td>
  2447. <p>ClientSecret is the API OAuth Client Secret.</p>
  2448. </td>
  2449. </tr>
  2450. <tr>
  2451. <td>
  2452. <code>certificate</code></br>
  2453. <em>
  2454. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2455. BeyondTrustProviderSecretRef
  2456. </a>
  2457. </em>
  2458. </td>
  2459. <td>
  2460. <p>Certificate (cert.pem) for use when authenticating with an OAuth client Id using a Client Certificate.</p>
  2461. </td>
  2462. </tr>
  2463. <tr>
  2464. <td>
  2465. <code>certificateKey</code></br>
  2466. <em>
  2467. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2468. BeyondTrustProviderSecretRef
  2469. </a>
  2470. </em>
  2471. </td>
  2472. <td>
  2473. <p>Certificate private key (key.pem). For use when authenticating with an OAuth client Id</p>
  2474. </td>
  2475. </tr>
  2476. </tbody>
  2477. </table>
  2478. <h3 id="external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider
  2479. </h3>
  2480. <p>
  2481. (<em>Appears on:</em>
  2482. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2483. </p>
  2484. <p>
  2485. </p>
  2486. <table>
  2487. <thead>
  2488. <tr>
  2489. <th>Field</th>
  2490. <th>Description</th>
  2491. </tr>
  2492. </thead>
  2493. <tbody>
  2494. <tr>
  2495. <td>
  2496. <code>auth</code></br>
  2497. <em>
  2498. <a href="#external-secrets.io/v1.BeyondtrustAuth">
  2499. BeyondtrustAuth
  2500. </a>
  2501. </em>
  2502. </td>
  2503. <td>
  2504. <p>Auth configures how the operator authenticates with Beyondtrust.</p>
  2505. </td>
  2506. </tr>
  2507. <tr>
  2508. <td>
  2509. <code>server</code></br>
  2510. <em>
  2511. <a href="#external-secrets.io/v1.BeyondtrustServer">
  2512. BeyondtrustServer
  2513. </a>
  2514. </em>
  2515. </td>
  2516. <td>
  2517. <p>Auth configures how API server works.</p>
  2518. </td>
  2519. </tr>
  2520. </tbody>
  2521. </table>
  2522. <h3 id="external-secrets.io/v1.BeyondtrustServer">BeyondtrustServer
  2523. </h3>
  2524. <p>
  2525. (<em>Appears on:</em>
  2526. <a href="#external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider</a>)
  2527. </p>
  2528. <p>
  2529. <p>Configures a store to sync secrets using BeyondTrust Password Safe.</p>
  2530. </p>
  2531. <table>
  2532. <thead>
  2533. <tr>
  2534. <th>Field</th>
  2535. <th>Description</th>
  2536. </tr>
  2537. </thead>
  2538. <tbody>
  2539. <tr>
  2540. <td>
  2541. <code>apiUrl</code></br>
  2542. <em>
  2543. string
  2544. </em>
  2545. </td>
  2546. <td>
  2547. </td>
  2548. </tr>
  2549. <tr>
  2550. <td>
  2551. <code>apiVersion</code></br>
  2552. <em>
  2553. string
  2554. </em>
  2555. </td>
  2556. <td>
  2557. </td>
  2558. </tr>
  2559. <tr>
  2560. <td>
  2561. <code>retrievalType</code></br>
  2562. <em>
  2563. string
  2564. </em>
  2565. </td>
  2566. <td>
  2567. <p>The secret retrieval type. SECRET = Secrets Safe (credential, text, file). MANAGED_ACCOUNT = Password Safe account associated with a system.</p>
  2568. </td>
  2569. </tr>
  2570. <tr>
  2571. <td>
  2572. <code>separator</code></br>
  2573. <em>
  2574. string
  2575. </em>
  2576. </td>
  2577. <td>
  2578. <p>A character that separates the folder names.</p>
  2579. </td>
  2580. </tr>
  2581. <tr>
  2582. <td>
  2583. <code>verifyCA</code></br>
  2584. <em>
  2585. bool
  2586. </em>
  2587. </td>
  2588. <td>
  2589. </td>
  2590. </tr>
  2591. <tr>
  2592. <td>
  2593. <code>clientTimeOutSeconds</code></br>
  2594. <em>
  2595. int
  2596. </em>
  2597. </td>
  2598. <td>
  2599. <p>Timeout specifies a time limit for requests made by this Client. The timeout includes connection time, any redirects, and reading the response body. Defaults to 45 seconds.</p>
  2600. </td>
  2601. </tr>
  2602. </tbody>
  2603. </table>
  2604. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerAuth">BitwardenSecretsManagerAuth
  2605. </h3>
  2606. <p>
  2607. (<em>Appears on:</em>
  2608. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider</a>)
  2609. </p>
  2610. <p>
  2611. <p>BitwardenSecretsManagerAuth contains the ref to the secret that contains the machine account token.</p>
  2612. </p>
  2613. <table>
  2614. <thead>
  2615. <tr>
  2616. <th>Field</th>
  2617. <th>Description</th>
  2618. </tr>
  2619. </thead>
  2620. <tbody>
  2621. <tr>
  2622. <td>
  2623. <code>secretRef</code></br>
  2624. <em>
  2625. <a href="#external-secrets.io/v1.BitwardenSecretsManagerSecretRef">
  2626. BitwardenSecretsManagerSecretRef
  2627. </a>
  2628. </em>
  2629. </td>
  2630. <td>
  2631. </td>
  2632. </tr>
  2633. </tbody>
  2634. </table>
  2635. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider
  2636. </h3>
  2637. <p>
  2638. (<em>Appears on:</em>
  2639. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2640. </p>
  2641. <p>
  2642. <p>BitwardenSecretsManagerProvider configures a store to sync secrets with a Bitwarden Secrets Manager instance.</p>
  2643. </p>
  2644. <table>
  2645. <thead>
  2646. <tr>
  2647. <th>Field</th>
  2648. <th>Description</th>
  2649. </tr>
  2650. </thead>
  2651. <tbody>
  2652. <tr>
  2653. <td>
  2654. <code>apiURL</code></br>
  2655. <em>
  2656. string
  2657. </em>
  2658. </td>
  2659. <td>
  2660. </td>
  2661. </tr>
  2662. <tr>
  2663. <td>
  2664. <code>identityURL</code></br>
  2665. <em>
  2666. string
  2667. </em>
  2668. </td>
  2669. <td>
  2670. </td>
  2671. </tr>
  2672. <tr>
  2673. <td>
  2674. <code>bitwardenServerSDKURL</code></br>
  2675. <em>
  2676. string
  2677. </em>
  2678. </td>
  2679. <td>
  2680. </td>
  2681. </tr>
  2682. <tr>
  2683. <td>
  2684. <code>caBundle</code></br>
  2685. <em>
  2686. string
  2687. </em>
  2688. </td>
  2689. <td>
  2690. <em>(Optional)</em>
  2691. <p>Base64 encoded certificate for the bitwarden server sdk. The sdk MUST run with HTTPS to make sure no MITM attack
  2692. can be performed.</p>
  2693. </td>
  2694. </tr>
  2695. <tr>
  2696. <td>
  2697. <code>caProvider</code></br>
  2698. <em>
  2699. <a href="#external-secrets.io/v1.CAProvider">
  2700. CAProvider
  2701. </a>
  2702. </em>
  2703. </td>
  2704. <td>
  2705. <em>(Optional)</em>
  2706. <p>see: <a href="https://external-secrets.io/latest/spec/#external-secrets.io/v1alpha1.CAProvider">https://external-secrets.io/latest/spec/#external-secrets.io/v1alpha1.CAProvider</a></p>
  2707. </td>
  2708. </tr>
  2709. <tr>
  2710. <td>
  2711. <code>organizationID</code></br>
  2712. <em>
  2713. string
  2714. </em>
  2715. </td>
  2716. <td>
  2717. <p>OrganizationID determines which organization this secret store manages.</p>
  2718. </td>
  2719. </tr>
  2720. <tr>
  2721. <td>
  2722. <code>projectID</code></br>
  2723. <em>
  2724. string
  2725. </em>
  2726. </td>
  2727. <td>
  2728. <p>ProjectID determines which project this secret store manages.</p>
  2729. </td>
  2730. </tr>
  2731. <tr>
  2732. <td>
  2733. <code>auth</code></br>
  2734. <em>
  2735. <a href="#external-secrets.io/v1.BitwardenSecretsManagerAuth">
  2736. BitwardenSecretsManagerAuth
  2737. </a>
  2738. </em>
  2739. </td>
  2740. <td>
  2741. <p>Auth configures how secret-manager authenticates with a bitwarden machine account instance.
  2742. Make sure that the token being used has permissions on the given secret.</p>
  2743. </td>
  2744. </tr>
  2745. </tbody>
  2746. </table>
  2747. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerSecretRef">BitwardenSecretsManagerSecretRef
  2748. </h3>
  2749. <p>
  2750. (<em>Appears on:</em>
  2751. <a href="#external-secrets.io/v1.BitwardenSecretsManagerAuth">BitwardenSecretsManagerAuth</a>)
  2752. </p>
  2753. <p>
  2754. <p>BitwardenSecretsManagerSecretRef contains the credential ref to the bitwarden instance.</p>
  2755. </p>
  2756. <table>
  2757. <thead>
  2758. <tr>
  2759. <th>Field</th>
  2760. <th>Description</th>
  2761. </tr>
  2762. </thead>
  2763. <tbody>
  2764. <tr>
  2765. <td>
  2766. <code>credentials</code></br>
  2767. <em>
  2768. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2769. External Secrets meta/v1.SecretKeySelector
  2770. </a>
  2771. </em>
  2772. </td>
  2773. <td>
  2774. <p>AccessToken used for the bitwarden instance.</p>
  2775. </td>
  2776. </tr>
  2777. </tbody>
  2778. </table>
  2779. <h3 id="external-secrets.io/v1.ByID">ByID
  2780. </h3>
  2781. <p>
  2782. (<em>Appears on:</em>
  2783. <a href="#external-secrets.io/v1.FetchingPolicy">FetchingPolicy</a>)
  2784. </p>
  2785. <p>
  2786. <p>ByID configures the provider to interpret the <code>data.secretKey.remoteRef.key</code> field in ExternalSecret as secret ID.</p>
  2787. </p>
  2788. <h3 id="external-secrets.io/v1.ByName">ByName
  2789. </h3>
  2790. <p>
  2791. (<em>Appears on:</em>
  2792. <a href="#external-secrets.io/v1.FetchingPolicy">FetchingPolicy</a>)
  2793. </p>
  2794. <p>
  2795. <p>ByName configures the provider to interpret the <code>data.secretKey.remoteRef.key</code> field in ExternalSecret as secret name.</p>
  2796. </p>
  2797. <table>
  2798. <thead>
  2799. <tr>
  2800. <th>Field</th>
  2801. <th>Description</th>
  2802. </tr>
  2803. </thead>
  2804. <tbody>
  2805. <tr>
  2806. <td>
  2807. <code>folderID</code></br>
  2808. <em>
  2809. string
  2810. </em>
  2811. </td>
  2812. <td>
  2813. <p>The folder to fetch secrets from</p>
  2814. </td>
  2815. </tr>
  2816. </tbody>
  2817. </table>
  2818. <h3 id="external-secrets.io/v1.CAProvider">CAProvider
  2819. </h3>
  2820. <p>
  2821. (<em>Appears on:</em>
  2822. <a href="#external-secrets.io/v1.AkeylessProvider">AkeylessProvider</a>,
  2823. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider</a>,
  2824. <a href="#external-secrets.io/v1.ConjurProvider">ConjurProvider</a>,
  2825. <a href="#external-secrets.io/v1.GitlabProvider">GitlabProvider</a>,
  2826. <a href="#external-secrets.io/v1.KubernetesServer">KubernetesServer</a>,
  2827. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  2828. </p>
  2829. <p>
  2830. <p>Used to provide custom certificate authority (CA) certificates
  2831. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  2832. that contains a PEM-encoded certificate.</p>
  2833. </p>
  2834. <table>
  2835. <thead>
  2836. <tr>
  2837. <th>Field</th>
  2838. <th>Description</th>
  2839. </tr>
  2840. </thead>
  2841. <tbody>
  2842. <tr>
  2843. <td>
  2844. <code>type</code></br>
  2845. <em>
  2846. <a href="#external-secrets.io/v1.CAProviderType">
  2847. CAProviderType
  2848. </a>
  2849. </em>
  2850. </td>
  2851. <td>
  2852. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  2853. </td>
  2854. </tr>
  2855. <tr>
  2856. <td>
  2857. <code>name</code></br>
  2858. <em>
  2859. string
  2860. </em>
  2861. </td>
  2862. <td>
  2863. <p>The name of the object located at the provider type.</p>
  2864. </td>
  2865. </tr>
  2866. <tr>
  2867. <td>
  2868. <code>key</code></br>
  2869. <em>
  2870. string
  2871. </em>
  2872. </td>
  2873. <td>
  2874. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  2875. </td>
  2876. </tr>
  2877. <tr>
  2878. <td>
  2879. <code>namespace</code></br>
  2880. <em>
  2881. string
  2882. </em>
  2883. </td>
  2884. <td>
  2885. <em>(Optional)</em>
  2886. <p>The namespace the Provider type is in.
  2887. Can only be defined when used in a ClusterSecretStore.</p>
  2888. </td>
  2889. </tr>
  2890. </tbody>
  2891. </table>
  2892. <h3 id="external-secrets.io/v1.CAProviderType">CAProviderType
  2893. (<code>string</code> alias)</p></h3>
  2894. <p>
  2895. (<em>Appears on:</em>
  2896. <a href="#external-secrets.io/v1.CAProvider">CAProvider</a>)
  2897. </p>
  2898. <p>
  2899. </p>
  2900. <table>
  2901. <thead>
  2902. <tr>
  2903. <th>Value</th>
  2904. <th>Description</th>
  2905. </tr>
  2906. </thead>
  2907. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  2908. <td></td>
  2909. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  2910. <td></td>
  2911. </tr></tbody>
  2912. </table>
  2913. <h3 id="external-secrets.io/v1.CSMAuth">CSMAuth
  2914. </h3>
  2915. <p>
  2916. (<em>Appears on:</em>
  2917. <a href="#external-secrets.io/v1.CloudruSMProvider">CloudruSMProvider</a>)
  2918. </p>
  2919. <p>
  2920. <p>CSMAuth contains a secretRef for credentials.</p>
  2921. </p>
  2922. <table>
  2923. <thead>
  2924. <tr>
  2925. <th>Field</th>
  2926. <th>Description</th>
  2927. </tr>
  2928. </thead>
  2929. <tbody>
  2930. <tr>
  2931. <td>
  2932. <code>secretRef</code></br>
  2933. <em>
  2934. <a href="#external-secrets.io/v1.CSMAuthSecretRef">
  2935. CSMAuthSecretRef
  2936. </a>
  2937. </em>
  2938. </td>
  2939. <td>
  2940. <em>(Optional)</em>
  2941. </td>
  2942. </tr>
  2943. </tbody>
  2944. </table>
  2945. <h3 id="external-secrets.io/v1.CSMAuthSecretRef">CSMAuthSecretRef
  2946. </h3>
  2947. <p>
  2948. (<em>Appears on:</em>
  2949. <a href="#external-secrets.io/v1.CSMAuth">CSMAuth</a>)
  2950. </p>
  2951. <p>
  2952. <p>CSMAuthSecretRef holds secret references for Cloud.ru credentials.</p>
  2953. </p>
  2954. <table>
  2955. <thead>
  2956. <tr>
  2957. <th>Field</th>
  2958. <th>Description</th>
  2959. </tr>
  2960. </thead>
  2961. <tbody>
  2962. <tr>
  2963. <td>
  2964. <code>accessKeyIDSecretRef</code></br>
  2965. <em>
  2966. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2967. External Secrets meta/v1.SecretKeySelector
  2968. </a>
  2969. </em>
  2970. </td>
  2971. <td>
  2972. <p>The AccessKeyID is used for authentication</p>
  2973. </td>
  2974. </tr>
  2975. <tr>
  2976. <td>
  2977. <code>accessKeySecretSecretRef</code></br>
  2978. <em>
  2979. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2980. External Secrets meta/v1.SecretKeySelector
  2981. </a>
  2982. </em>
  2983. </td>
  2984. <td>
  2985. <p>The AccessKeySecret is used for authentication</p>
  2986. </td>
  2987. </tr>
  2988. </tbody>
  2989. </table>
  2990. <h3 id="external-secrets.io/v1.CertAuth">CertAuth
  2991. </h3>
  2992. <p>
  2993. (<em>Appears on:</em>
  2994. <a href="#external-secrets.io/v1.KubernetesAuth">KubernetesAuth</a>)
  2995. </p>
  2996. <p>
  2997. </p>
  2998. <table>
  2999. <thead>
  3000. <tr>
  3001. <th>Field</th>
  3002. <th>Description</th>
  3003. </tr>
  3004. </thead>
  3005. <tbody>
  3006. <tr>
  3007. <td>
  3008. <code>clientCert</code></br>
  3009. <em>
  3010. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3011. External Secrets meta/v1.SecretKeySelector
  3012. </a>
  3013. </em>
  3014. </td>
  3015. <td>
  3016. </td>
  3017. </tr>
  3018. <tr>
  3019. <td>
  3020. <code>clientKey</code></br>
  3021. <em>
  3022. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3023. External Secrets meta/v1.SecretKeySelector
  3024. </a>
  3025. </em>
  3026. </td>
  3027. <td>
  3028. </td>
  3029. </tr>
  3030. </tbody>
  3031. </table>
  3032. <h3 id="external-secrets.io/v1.ChefAuth">ChefAuth
  3033. </h3>
  3034. <p>
  3035. (<em>Appears on:</em>
  3036. <a href="#external-secrets.io/v1.ChefProvider">ChefProvider</a>)
  3037. </p>
  3038. <p>
  3039. <p>ChefAuth contains a secretRef for credentials.</p>
  3040. </p>
  3041. <table>
  3042. <thead>
  3043. <tr>
  3044. <th>Field</th>
  3045. <th>Description</th>
  3046. </tr>
  3047. </thead>
  3048. <tbody>
  3049. <tr>
  3050. <td>
  3051. <code>secretRef</code></br>
  3052. <em>
  3053. <a href="#external-secrets.io/v1.ChefAuthSecretRef">
  3054. ChefAuthSecretRef
  3055. </a>
  3056. </em>
  3057. </td>
  3058. <td>
  3059. </td>
  3060. </tr>
  3061. </tbody>
  3062. </table>
  3063. <h3 id="external-secrets.io/v1.ChefAuthSecretRef">ChefAuthSecretRef
  3064. </h3>
  3065. <p>
  3066. (<em>Appears on:</em>
  3067. <a href="#external-secrets.io/v1.ChefAuth">ChefAuth</a>)
  3068. </p>
  3069. <p>
  3070. <p>ChefAuthSecretRef holds secret references for chef server login credentials.</p>
  3071. </p>
  3072. <table>
  3073. <thead>
  3074. <tr>
  3075. <th>Field</th>
  3076. <th>Description</th>
  3077. </tr>
  3078. </thead>
  3079. <tbody>
  3080. <tr>
  3081. <td>
  3082. <code>privateKeySecretRef</code></br>
  3083. <em>
  3084. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3085. External Secrets meta/v1.SecretKeySelector
  3086. </a>
  3087. </em>
  3088. </td>
  3089. <td>
  3090. <p>SecretKey is the Signing Key in PEM format, used for authentication.</p>
  3091. </td>
  3092. </tr>
  3093. </tbody>
  3094. </table>
  3095. <h3 id="external-secrets.io/v1.ChefProvider">ChefProvider
  3096. </h3>
  3097. <p>
  3098. (<em>Appears on:</em>
  3099. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  3100. </p>
  3101. <p>
  3102. <p>ChefProvider configures a store to sync secrets using basic chef server connection credentials.</p>
  3103. </p>
  3104. <table>
  3105. <thead>
  3106. <tr>
  3107. <th>Field</th>
  3108. <th>Description</th>
  3109. </tr>
  3110. </thead>
  3111. <tbody>
  3112. <tr>
  3113. <td>
  3114. <code>auth</code></br>
  3115. <em>
  3116. <a href="#external-secrets.io/v1.ChefAuth">
  3117. ChefAuth
  3118. </a>
  3119. </em>
  3120. </td>
  3121. <td>
  3122. <p>Auth defines the information necessary to authenticate against chef Server</p>
  3123. </td>
  3124. </tr>
  3125. <tr>
  3126. <td>
  3127. <code>username</code></br>
  3128. <em>
  3129. string
  3130. </em>
  3131. </td>
  3132. <td>
  3133. <p>UserName should be the user ID on the chef server</p>
  3134. </td>
  3135. </tr>
  3136. <tr>
  3137. <td>
  3138. <code>serverUrl</code></br>
  3139. <em>
  3140. string
  3141. </em>
  3142. </td>
  3143. <td>
  3144. <p>ServerURL is the chef server URL used to connect to. If using orgs you should include your org in the url and terminate the url with a &ldquo;/&rdquo;</p>
  3145. </td>
  3146. </tr>
  3147. </tbody>
  3148. </table>
  3149. <h3 id="external-secrets.io/v1.CloudruSMProvider">CloudruSMProvider
  3150. </h3>
  3151. <p>
  3152. (<em>Appears on:</em>
  3153. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  3154. </p>
  3155. <p>
  3156. <p>CloudruSMProvider configures a store to sync secrets using the Cloud.ru Secret Manager provider.</p>
  3157. </p>
  3158. <table>
  3159. <thead>
  3160. <tr>
  3161. <th>Field</th>
  3162. <th>Description</th>
  3163. </tr>
  3164. </thead>
  3165. <tbody>
  3166. <tr>
  3167. <td>
  3168. <code>auth</code></br>
  3169. <em>
  3170. <a href="#external-secrets.io/v1.CSMAuth">
  3171. CSMAuth
  3172. </a>
  3173. </em>
  3174. </td>
  3175. <td>
  3176. </td>
  3177. </tr>
  3178. <tr>
  3179. <td>
  3180. <code>projectID</code></br>
  3181. <em>
  3182. string
  3183. </em>
  3184. </td>
  3185. <td>
  3186. <p>ProjectID is the project, which the secrets are stored in.</p>
  3187. </td>
  3188. </tr>
  3189. </tbody>
  3190. </table>
  3191. <h3 id="external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret
  3192. </h3>
  3193. <p>
  3194. <p>ClusterExternalSecret is the Schema for the clusterexternalsecrets API.</p>
  3195. </p>
  3196. <table>
  3197. <thead>
  3198. <tr>
  3199. <th>Field</th>
  3200. <th>Description</th>
  3201. </tr>
  3202. </thead>
  3203. <tbody>
  3204. <tr>
  3205. <td>
  3206. <code>metadata</code></br>
  3207. <em>
  3208. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  3209. Kubernetes meta/v1.ObjectMeta
  3210. </a>
  3211. </em>
  3212. </td>
  3213. <td>
  3214. Refer to the Kubernetes API documentation for the fields of the
  3215. <code>metadata</code> field.
  3216. </td>
  3217. </tr>
  3218. <tr>
  3219. <td>
  3220. <code>spec</code></br>
  3221. <em>
  3222. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">
  3223. ClusterExternalSecretSpec
  3224. </a>
  3225. </em>
  3226. </td>
  3227. <td>
  3228. <br/>
  3229. <br/>
  3230. <table>
  3231. <tr>
  3232. <td>
  3233. <code>externalSecretSpec</code></br>
  3234. <em>
  3235. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  3236. ExternalSecretSpec
  3237. </a>
  3238. </em>
  3239. </td>
  3240. <td>
  3241. <p>The spec for the ExternalSecrets to be created</p>
  3242. </td>
  3243. </tr>
  3244. <tr>
  3245. <td>
  3246. <code>externalSecretName</code></br>
  3247. <em>
  3248. string
  3249. </em>
  3250. </td>
  3251. <td>
  3252. <em>(Optional)</em>
  3253. <p>The name of the external secrets to be created.
  3254. Defaults to the name of the ClusterExternalSecret</p>
  3255. </td>
  3256. </tr>
  3257. <tr>
  3258. <td>
  3259. <code>externalSecretMetadata</code></br>
  3260. <em>
  3261. <a href="#external-secrets.io/v1.ExternalSecretMetadata">
  3262. ExternalSecretMetadata
  3263. </a>
  3264. </em>
  3265. </td>
  3266. <td>
  3267. <em>(Optional)</em>
  3268. <p>The metadata of the external secrets to be created</p>
  3269. </td>
  3270. </tr>
  3271. <tr>
  3272. <td>
  3273. <code>namespaceSelector</code></br>
  3274. <em>
  3275. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3276. Kubernetes meta/v1.LabelSelector
  3277. </a>
  3278. </em>
  3279. </td>
  3280. <td>
  3281. <em>(Optional)</em>
  3282. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  3283. Deprecated: Use NamespaceSelectors instead.</p>
  3284. </td>
  3285. </tr>
  3286. <tr>
  3287. <td>
  3288. <code>namespaceSelectors</code></br>
  3289. <em>
  3290. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  3291. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  3292. </a>
  3293. </em>
  3294. </td>
  3295. <td>
  3296. <em>(Optional)</em>
  3297. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  3298. </td>
  3299. </tr>
  3300. <tr>
  3301. <td>
  3302. <code>namespaces</code></br>
  3303. <em>
  3304. []string
  3305. </em>
  3306. </td>
  3307. <td>
  3308. <em>(Optional)</em>
  3309. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelectors ends up choosing.
  3310. Deprecated: Use NamespaceSelectors instead.</p>
  3311. </td>
  3312. </tr>
  3313. <tr>
  3314. <td>
  3315. <code>refreshTime</code></br>
  3316. <em>
  3317. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  3318. Kubernetes meta/v1.Duration
  3319. </a>
  3320. </em>
  3321. </td>
  3322. <td>
  3323. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  3324. </td>
  3325. </tr>
  3326. </table>
  3327. </td>
  3328. </tr>
  3329. <tr>
  3330. <td>
  3331. <code>status</code></br>
  3332. <em>
  3333. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">
  3334. ClusterExternalSecretStatus
  3335. </a>
  3336. </em>
  3337. </td>
  3338. <td>
  3339. </td>
  3340. </tr>
  3341. </tbody>
  3342. </table>
  3343. <h3 id="external-secrets.io/v1.ClusterExternalSecretConditionType">ClusterExternalSecretConditionType
  3344. (<code>string</code> alias)</p></h3>
  3345. <p>
  3346. (<em>Appears on:</em>
  3347. <a href="#external-secrets.io/v1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition</a>)
  3348. </p>
  3349. <p>
  3350. </p>
  3351. <table>
  3352. <thead>
  3353. <tr>
  3354. <th>Value</th>
  3355. <th>Description</th>
  3356. </tr>
  3357. </thead>
  3358. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  3359. <td></td>
  3360. </tr></tbody>
  3361. </table>
  3362. <h3 id="external-secrets.io/v1.ClusterExternalSecretNamespaceFailure">ClusterExternalSecretNamespaceFailure
  3363. </h3>
  3364. <p>
  3365. (<em>Appears on:</em>
  3366. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  3367. </p>
  3368. <p>
  3369. <p>ClusterExternalSecretNamespaceFailure represents a failed namespace deployment and it&rsquo;s reason.</p>
  3370. </p>
  3371. <table>
  3372. <thead>
  3373. <tr>
  3374. <th>Field</th>
  3375. <th>Description</th>
  3376. </tr>
  3377. </thead>
  3378. <tbody>
  3379. <tr>
  3380. <td>
  3381. <code>namespace</code></br>
  3382. <em>
  3383. string
  3384. </em>
  3385. </td>
  3386. <td>
  3387. <p>Namespace is the namespace that failed when trying to apply an ExternalSecret</p>
  3388. </td>
  3389. </tr>
  3390. <tr>
  3391. <td>
  3392. <code>reason</code></br>
  3393. <em>
  3394. string
  3395. </em>
  3396. </td>
  3397. <td>
  3398. <em>(Optional)</em>
  3399. <p>Reason is why the ExternalSecret failed to apply to the namespace</p>
  3400. </td>
  3401. </tr>
  3402. </tbody>
  3403. </table>
  3404. <h3 id="external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec
  3405. </h3>
  3406. <p>
  3407. (<em>Appears on:</em>
  3408. <a href="#external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret</a>)
  3409. </p>
  3410. <p>
  3411. <p>ClusterExternalSecretSpec defines the desired state of ClusterExternalSecret.</p>
  3412. </p>
  3413. <table>
  3414. <thead>
  3415. <tr>
  3416. <th>Field</th>
  3417. <th>Description</th>
  3418. </tr>
  3419. </thead>
  3420. <tbody>
  3421. <tr>
  3422. <td>
  3423. <code>externalSecretSpec</code></br>
  3424. <em>
  3425. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  3426. ExternalSecretSpec
  3427. </a>
  3428. </em>
  3429. </td>
  3430. <td>
  3431. <p>The spec for the ExternalSecrets to be created</p>
  3432. </td>
  3433. </tr>
  3434. <tr>
  3435. <td>
  3436. <code>externalSecretName</code></br>
  3437. <em>
  3438. string
  3439. </em>
  3440. </td>
  3441. <td>
  3442. <em>(Optional)</em>
  3443. <p>The name of the external secrets to be created.
  3444. Defaults to the name of the ClusterExternalSecret</p>
  3445. </td>
  3446. </tr>
  3447. <tr>
  3448. <td>
  3449. <code>externalSecretMetadata</code></br>
  3450. <em>
  3451. <a href="#external-secrets.io/v1.ExternalSecretMetadata">
  3452. ExternalSecretMetadata
  3453. </a>
  3454. </em>
  3455. </td>
  3456. <td>
  3457. <em>(Optional)</em>
  3458. <p>The metadata of the external secrets to be created</p>
  3459. </td>
  3460. </tr>
  3461. <tr>
  3462. <td>
  3463. <code>namespaceSelector</code></br>
  3464. <em>
  3465. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3466. Kubernetes meta/v1.LabelSelector
  3467. </a>
  3468. </em>
  3469. </td>
  3470. <td>
  3471. <em>(Optional)</em>
  3472. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  3473. Deprecated: Use NamespaceSelectors instead.</p>
  3474. </td>
  3475. </tr>
  3476. <tr>
  3477. <td>
  3478. <code>namespaceSelectors</code></br>
  3479. <em>
  3480. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  3481. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  3482. </a>
  3483. </em>
  3484. </td>
  3485. <td>
  3486. <em>(Optional)</em>
  3487. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  3488. </td>
  3489. </tr>
  3490. <tr>
  3491. <td>
  3492. <code>namespaces</code></br>
  3493. <em>
  3494. []string
  3495. </em>
  3496. </td>
  3497. <td>
  3498. <em>(Optional)</em>
  3499. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelectors ends up choosing.
  3500. Deprecated: Use NamespaceSelectors instead.</p>
  3501. </td>
  3502. </tr>
  3503. <tr>
  3504. <td>
  3505. <code>refreshTime</code></br>
  3506. <em>
  3507. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  3508. Kubernetes meta/v1.Duration
  3509. </a>
  3510. </em>
  3511. </td>
  3512. <td>
  3513. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  3514. </td>
  3515. </tr>
  3516. </tbody>
  3517. </table>
  3518. <h3 id="external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus
  3519. </h3>
  3520. <p>
  3521. (<em>Appears on:</em>
  3522. <a href="#external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret</a>)
  3523. </p>
  3524. <p>
  3525. <p>ClusterExternalSecretStatus defines the observed state of ClusterExternalSecret.</p>
  3526. </p>
  3527. <table>
  3528. <thead>
  3529. <tr>
  3530. <th>Field</th>
  3531. <th>Description</th>
  3532. </tr>
  3533. </thead>
  3534. <tbody>
  3535. <tr>
  3536. <td>
  3537. <code>externalSecretName</code></br>
  3538. <em>
  3539. string
  3540. </em>
  3541. </td>
  3542. <td>
  3543. <p>ExternalSecretName is the name of the ExternalSecrets created by the ClusterExternalSecret</p>
  3544. </td>
  3545. </tr>
  3546. <tr>
  3547. <td>
  3548. <code>failedNamespaces</code></br>
  3549. <em>
  3550. <a href="#external-secrets.io/v1.ClusterExternalSecretNamespaceFailure">
  3551. []ClusterExternalSecretNamespaceFailure
  3552. </a>
  3553. </em>
  3554. </td>
  3555. <td>
  3556. <em>(Optional)</em>
  3557. <p>Failed namespaces are the namespaces that failed to apply an ExternalSecret</p>
  3558. </td>
  3559. </tr>
  3560. <tr>
  3561. <td>
  3562. <code>provisionedNamespaces</code></br>
  3563. <em>
  3564. []string
  3565. </em>
  3566. </td>
  3567. <td>
  3568. <em>(Optional)</em>
  3569. <p>ProvisionedNamespaces are the namespaces where the ClusterExternalSecret has secrets</p>
  3570. </td>
  3571. </tr>
  3572. <tr>
  3573. <td>
  3574. <code>conditions</code></br>
  3575. <em>
  3576. <a href="#external-secrets.io/v1.ClusterExternalSecretStatusCondition">
  3577. []ClusterExternalSecretStatusCondition
  3578. </a>
  3579. </em>
  3580. </td>
  3581. <td>
  3582. <em>(Optional)</em>
  3583. </td>
  3584. </tr>
  3585. </tbody>
  3586. </table>
  3587. <h3 id="external-secrets.io/v1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition
  3588. </h3>
  3589. <p>
  3590. (<em>Appears on:</em>
  3591. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  3592. </p>
  3593. <p>
  3594. </p>
  3595. <table>
  3596. <thead>
  3597. <tr>
  3598. <th>Field</th>
  3599. <th>Description</th>
  3600. </tr>
  3601. </thead>
  3602. <tbody>
  3603. <tr>
  3604. <td>
  3605. <code>type</code></br>
  3606. <em>
  3607. <a href="#external-secrets.io/v1.ClusterExternalSecretConditionType">
  3608. ClusterExternalSecretConditionType
  3609. </a>
  3610. </em>
  3611. </td>
  3612. <td>
  3613. </td>
  3614. </tr>
  3615. <tr>
  3616. <td>
  3617. <code>status</code></br>
  3618. <em>
  3619. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  3620. Kubernetes core/v1.ConditionStatus
  3621. </a>
  3622. </em>
  3623. </td>
  3624. <td>
  3625. </td>
  3626. </tr>
  3627. <tr>
  3628. <td>
  3629. <code>message</code></br>
  3630. <em>
  3631. string
  3632. </em>
  3633. </td>
  3634. <td>
  3635. <em>(Optional)</em>
  3636. </td>
  3637. </tr>
  3638. </tbody>
  3639. </table>
  3640. <h3 id="external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore
  3641. </h3>
  3642. <p>
  3643. <p>ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  3644. </p>
  3645. <table>
  3646. <thead>
  3647. <tr>
  3648. <th>Field</th>
  3649. <th>Description</th>
  3650. </tr>
  3651. </thead>
  3652. <tbody>
  3653. <tr>
  3654. <td>
  3655. <code>metadata</code></br>
  3656. <em>
  3657. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  3658. Kubernetes meta/v1.ObjectMeta
  3659. </a>
  3660. </em>
  3661. </td>
  3662. <td>
  3663. Refer to the Kubernetes API documentation for the fields of the
  3664. <code>metadata</code> field.
  3665. </td>
  3666. </tr>
  3667. <tr>
  3668. <td>
  3669. <code>spec</code></br>
  3670. <em>
  3671. <a href="#external-secrets.io/v1.SecretStoreSpec">
  3672. SecretStoreSpec
  3673. </a>
  3674. </em>
  3675. </td>
  3676. <td>
  3677. <br/>
  3678. <br/>
  3679. <table>
  3680. <tr>
  3681. <td>
  3682. <code>controller</code></br>
  3683. <em>
  3684. string
  3685. </em>
  3686. </td>
  3687. <td>
  3688. <em>(Optional)</em>
  3689. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  3690. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  3691. </td>
  3692. </tr>
  3693. <tr>
  3694. <td>
  3695. <code>provider</code></br>
  3696. <em>
  3697. <a href="#external-secrets.io/v1.SecretStoreProvider">
  3698. SecretStoreProvider
  3699. </a>
  3700. </em>
  3701. </td>
  3702. <td>
  3703. <p>Used to configure the provider. Only one provider may be set</p>
  3704. </td>
  3705. </tr>
  3706. <tr>
  3707. <td>
  3708. <code>retrySettings</code></br>
  3709. <em>
  3710. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  3711. SecretStoreRetrySettings
  3712. </a>
  3713. </em>
  3714. </td>
  3715. <td>
  3716. <em>(Optional)</em>
  3717. <p>Used to configure http retries if failed</p>
  3718. </td>
  3719. </tr>
  3720. <tr>
  3721. <td>
  3722. <code>refreshInterval</code></br>
  3723. <em>
  3724. int
  3725. </em>
  3726. </td>
  3727. <td>
  3728. <em>(Optional)</em>
  3729. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  3730. </td>
  3731. </tr>
  3732. <tr>
  3733. <td>
  3734. <code>conditions</code></br>
  3735. <em>
  3736. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  3737. []ClusterSecretStoreCondition
  3738. </a>
  3739. </em>
  3740. </td>
  3741. <td>
  3742. <em>(Optional)</em>
  3743. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  3744. </td>
  3745. </tr>
  3746. </table>
  3747. </td>
  3748. </tr>
  3749. <tr>
  3750. <td>
  3751. <code>status</code></br>
  3752. <em>
  3753. <a href="#external-secrets.io/v1.SecretStoreStatus">
  3754. SecretStoreStatus
  3755. </a>
  3756. </em>
  3757. </td>
  3758. <td>
  3759. </td>
  3760. </tr>
  3761. </tbody>
  3762. </table>
  3763. <h3 id="external-secrets.io/v1.ClusterSecretStoreCondition">ClusterSecretStoreCondition
  3764. </h3>
  3765. <p>
  3766. (<em>Appears on:</em>
  3767. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  3768. </p>
  3769. <p>
  3770. <p>ClusterSecretStoreCondition describes a condition by which to choose namespaces to process ExternalSecrets in
  3771. for a ClusterSecretStore instance.</p>
  3772. </p>
  3773. <table>
  3774. <thead>
  3775. <tr>
  3776. <th>Field</th>
  3777. <th>Description</th>
  3778. </tr>
  3779. </thead>
  3780. <tbody>
  3781. <tr>
  3782. <td>
  3783. <code>namespaceSelector</code></br>
  3784. <em>
  3785. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3786. Kubernetes meta/v1.LabelSelector
  3787. </a>
  3788. </em>
  3789. </td>
  3790. <td>
  3791. <em>(Optional)</em>
  3792. <p>Choose namespace using a labelSelector</p>
  3793. </td>
  3794. </tr>
  3795. <tr>
  3796. <td>
  3797. <code>namespaces</code></br>
  3798. <em>
  3799. []string
  3800. </em>
  3801. </td>
  3802. <td>
  3803. <em>(Optional)</em>
  3804. <p>Choose namespaces by name</p>
  3805. </td>
  3806. </tr>
  3807. <tr>
  3808. <td>
  3809. <code>namespaceRegexes</code></br>
  3810. <em>
  3811. []string
  3812. </em>
  3813. </td>
  3814. <td>
  3815. <em>(Optional)</em>
  3816. <p>Choose namespaces by using regex matching</p>
  3817. </td>
  3818. </tr>
  3819. </tbody>
  3820. </table>
  3821. <h3 id="external-secrets.io/v1.ConfigMapReference">ConfigMapReference
  3822. </h3>
  3823. <p>
  3824. (<em>Appears on:</em>
  3825. <a href="#external-secrets.io/v1.GCPWorkloadIdentityFederation">GCPWorkloadIdentityFederation</a>)
  3826. </p>
  3827. <p>
  3828. <p>ConfigMapReference holds the details of a configmap.</p>
  3829. </p>
  3830. <table>
  3831. <thead>
  3832. <tr>
  3833. <th>Field</th>
  3834. <th>Description</th>
  3835. </tr>
  3836. </thead>
  3837. <tbody>
  3838. <tr>
  3839. <td>
  3840. <code>name</code></br>
  3841. <em>
  3842. string
  3843. </em>
  3844. </td>
  3845. <td>
  3846. <p>name of the configmap.</p>
  3847. </td>
  3848. </tr>
  3849. <tr>
  3850. <td>
  3851. <code>namespace</code></br>
  3852. <em>
  3853. string
  3854. </em>
  3855. </td>
  3856. <td>
  3857. <p>namespace in which the configmap exists. If empty, configmap will looked up in local namespace.</p>
  3858. </td>
  3859. </tr>
  3860. <tr>
  3861. <td>
  3862. <code>key</code></br>
  3863. <em>
  3864. string
  3865. </em>
  3866. </td>
  3867. <td>
  3868. <p>key name holding the external account credential config.</p>
  3869. </td>
  3870. </tr>
  3871. </tbody>
  3872. </table>
  3873. <h3 id="external-secrets.io/v1.ConjurAPIKey">ConjurAPIKey
  3874. </h3>
  3875. <p>
  3876. (<em>Appears on:</em>
  3877. <a href="#external-secrets.io/v1.ConjurAuth">ConjurAuth</a>)
  3878. </p>
  3879. <p>
  3880. </p>
  3881. <table>
  3882. <thead>
  3883. <tr>
  3884. <th>Field</th>
  3885. <th>Description</th>
  3886. </tr>
  3887. </thead>
  3888. <tbody>
  3889. <tr>
  3890. <td>
  3891. <code>account</code></br>
  3892. <em>
  3893. string
  3894. </em>
  3895. </td>
  3896. <td>
  3897. <p>Account is the Conjur organization account name.</p>
  3898. </td>
  3899. </tr>
  3900. <tr>
  3901. <td>
  3902. <code>userRef</code></br>
  3903. <em>
  3904. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3905. External Secrets meta/v1.SecretKeySelector
  3906. </a>
  3907. </em>
  3908. </td>
  3909. <td>
  3910. <p>A reference to a specific &lsquo;key&rsquo; containing the Conjur username
  3911. within a Secret resource. In some instances, <code>key</code> is a required field.</p>
  3912. </td>
  3913. </tr>
  3914. <tr>
  3915. <td>
  3916. <code>apiKeyRef</code></br>
  3917. <em>
  3918. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3919. External Secrets meta/v1.SecretKeySelector
  3920. </a>
  3921. </em>
  3922. </td>
  3923. <td>
  3924. <p>A reference to a specific &lsquo;key&rsquo; containing the Conjur API key
  3925. within a Secret resource. In some instances, <code>key</code> is a required field.</p>
  3926. </td>
  3927. </tr>
  3928. </tbody>
  3929. </table>
  3930. <h3 id="external-secrets.io/v1.ConjurAuth">ConjurAuth
  3931. </h3>
  3932. <p>
  3933. (<em>Appears on:</em>
  3934. <a href="#external-secrets.io/v1.ConjurProvider">ConjurProvider</a>)
  3935. </p>
  3936. <p>
  3937. </p>
  3938. <table>
  3939. <thead>
  3940. <tr>
  3941. <th>Field</th>
  3942. <th>Description</th>
  3943. </tr>
  3944. </thead>
  3945. <tbody>
  3946. <tr>
  3947. <td>
  3948. <code>apikey</code></br>
  3949. <em>
  3950. <a href="#external-secrets.io/v1.ConjurAPIKey">
  3951. ConjurAPIKey
  3952. </a>
  3953. </em>
  3954. </td>
  3955. <td>
  3956. <em>(Optional)</em>
  3957. <p>Authenticates with Conjur using an API key.</p>
  3958. </td>
  3959. </tr>
  3960. <tr>
  3961. <td>
  3962. <code>jwt</code></br>
  3963. <em>
  3964. <a href="#external-secrets.io/v1.ConjurJWT">
  3965. ConjurJWT
  3966. </a>
  3967. </em>
  3968. </td>
  3969. <td>
  3970. <em>(Optional)</em>
  3971. <p>Jwt enables JWT authentication using Kubernetes service account tokens.</p>
  3972. </td>
  3973. </tr>
  3974. </tbody>
  3975. </table>
  3976. <h3 id="external-secrets.io/v1.ConjurJWT">ConjurJWT
  3977. </h3>
  3978. <p>
  3979. (<em>Appears on:</em>
  3980. <a href="#external-secrets.io/v1.ConjurAuth">ConjurAuth</a>)
  3981. </p>
  3982. <p>
  3983. </p>
  3984. <table>
  3985. <thead>
  3986. <tr>
  3987. <th>Field</th>
  3988. <th>Description</th>
  3989. </tr>
  3990. </thead>
  3991. <tbody>
  3992. <tr>
  3993. <td>
  3994. <code>account</code></br>
  3995. <em>
  3996. string
  3997. </em>
  3998. </td>
  3999. <td>
  4000. <p>Account is the Conjur organization account name.</p>
  4001. </td>
  4002. </tr>
  4003. <tr>
  4004. <td>
  4005. <code>serviceID</code></br>
  4006. <em>
  4007. string
  4008. </em>
  4009. </td>
  4010. <td>
  4011. <p>The conjur authn jwt webservice id</p>
  4012. </td>
  4013. </tr>
  4014. <tr>
  4015. <td>
  4016. <code>hostId</code></br>
  4017. <em>
  4018. string
  4019. </em>
  4020. </td>
  4021. <td>
  4022. <em>(Optional)</em>
  4023. <p>Optional HostID for JWT authentication. This may be used depending
  4024. on how the Conjur JWT authenticator policy is configured.</p>
  4025. </td>
  4026. </tr>
  4027. <tr>
  4028. <td>
  4029. <code>secretRef</code></br>
  4030. <em>
  4031. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4032. External Secrets meta/v1.SecretKeySelector
  4033. </a>
  4034. </em>
  4035. </td>
  4036. <td>
  4037. <em>(Optional)</em>
  4038. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  4039. authenticate with Conjur using the JWT authentication method.</p>
  4040. </td>
  4041. </tr>
  4042. <tr>
  4043. <td>
  4044. <code>serviceAccountRef</code></br>
  4045. <em>
  4046. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  4047. External Secrets meta/v1.ServiceAccountSelector
  4048. </a>
  4049. </em>
  4050. </td>
  4051. <td>
  4052. <em>(Optional)</em>
  4053. <p>Optional ServiceAccountRef specifies the Kubernetes service account for which to request
  4054. a token for with the <code>TokenRequest</code> API.</p>
  4055. </td>
  4056. </tr>
  4057. </tbody>
  4058. </table>
  4059. <h3 id="external-secrets.io/v1.ConjurProvider">ConjurProvider
  4060. </h3>
  4061. <p>
  4062. (<em>Appears on:</em>
  4063. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4064. </p>
  4065. <p>
  4066. </p>
  4067. <table>
  4068. <thead>
  4069. <tr>
  4070. <th>Field</th>
  4071. <th>Description</th>
  4072. </tr>
  4073. </thead>
  4074. <tbody>
  4075. <tr>
  4076. <td>
  4077. <code>url</code></br>
  4078. <em>
  4079. string
  4080. </em>
  4081. </td>
  4082. <td>
  4083. <p>URL is the endpoint of the Conjur instance.</p>
  4084. </td>
  4085. </tr>
  4086. <tr>
  4087. <td>
  4088. <code>caBundle</code></br>
  4089. <em>
  4090. string
  4091. </em>
  4092. </td>
  4093. <td>
  4094. <em>(Optional)</em>
  4095. <p>CABundle is a PEM encoded CA bundle that will be used to validate the Conjur server certificate.</p>
  4096. </td>
  4097. </tr>
  4098. <tr>
  4099. <td>
  4100. <code>caProvider</code></br>
  4101. <em>
  4102. <a href="#external-secrets.io/v1.CAProvider">
  4103. CAProvider
  4104. </a>
  4105. </em>
  4106. </td>
  4107. <td>
  4108. <em>(Optional)</em>
  4109. <p>Used to provide custom certificate authority (CA) certificates
  4110. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  4111. that contains a PEM-encoded certificate.</p>
  4112. </td>
  4113. </tr>
  4114. <tr>
  4115. <td>
  4116. <code>auth</code></br>
  4117. <em>
  4118. <a href="#external-secrets.io/v1.ConjurAuth">
  4119. ConjurAuth
  4120. </a>
  4121. </em>
  4122. </td>
  4123. <td>
  4124. <p>Defines authentication settings for connecting to Conjur.</p>
  4125. </td>
  4126. </tr>
  4127. </tbody>
  4128. </table>
  4129. <h3 id="external-secrets.io/v1.DelineaProvider">DelineaProvider
  4130. </h3>
  4131. <p>
  4132. (<em>Appears on:</em>
  4133. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4134. </p>
  4135. <p>
  4136. <p>See <a href="https://github.com/DelineaXPM/dsv-sdk-go/blob/main/vault/vault.go">https://github.com/DelineaXPM/dsv-sdk-go/blob/main/vault/vault.go</a>.</p>
  4137. </p>
  4138. <table>
  4139. <thead>
  4140. <tr>
  4141. <th>Field</th>
  4142. <th>Description</th>
  4143. </tr>
  4144. </thead>
  4145. <tbody>
  4146. <tr>
  4147. <td>
  4148. <code>clientId</code></br>
  4149. <em>
  4150. <a href="#external-secrets.io/v1.DelineaProviderSecretRef">
  4151. DelineaProviderSecretRef
  4152. </a>
  4153. </em>
  4154. </td>
  4155. <td>
  4156. <p>ClientID is the non-secret part of the credential.</p>
  4157. </td>
  4158. </tr>
  4159. <tr>
  4160. <td>
  4161. <code>clientSecret</code></br>
  4162. <em>
  4163. <a href="#external-secrets.io/v1.DelineaProviderSecretRef">
  4164. DelineaProviderSecretRef
  4165. </a>
  4166. </em>
  4167. </td>
  4168. <td>
  4169. <p>ClientSecret is the secret part of the credential.</p>
  4170. </td>
  4171. </tr>
  4172. <tr>
  4173. <td>
  4174. <code>tenant</code></br>
  4175. <em>
  4176. string
  4177. </em>
  4178. </td>
  4179. <td>
  4180. <p>Tenant is the chosen hostname / site name.</p>
  4181. </td>
  4182. </tr>
  4183. <tr>
  4184. <td>
  4185. <code>urlTemplate</code></br>
  4186. <em>
  4187. string
  4188. </em>
  4189. </td>
  4190. <td>
  4191. <em>(Optional)</em>
  4192. <p>URLTemplate
  4193. If unset, defaults to &ldquo;https://%s.secretsvaultcloud.%s/v1/%s%s&rdquo;.</p>
  4194. </td>
  4195. </tr>
  4196. <tr>
  4197. <td>
  4198. <code>tld</code></br>
  4199. <em>
  4200. string
  4201. </em>
  4202. </td>
  4203. <td>
  4204. <em>(Optional)</em>
  4205. <p>TLD is based on the server location that was chosen during provisioning.
  4206. If unset, defaults to &ldquo;com&rdquo;.</p>
  4207. </td>
  4208. </tr>
  4209. </tbody>
  4210. </table>
  4211. <h3 id="external-secrets.io/v1.DelineaProviderSecretRef">DelineaProviderSecretRef
  4212. </h3>
  4213. <p>
  4214. (<em>Appears on:</em>
  4215. <a href="#external-secrets.io/v1.DelineaProvider">DelineaProvider</a>)
  4216. </p>
  4217. <p>
  4218. </p>
  4219. <table>
  4220. <thead>
  4221. <tr>
  4222. <th>Field</th>
  4223. <th>Description</th>
  4224. </tr>
  4225. </thead>
  4226. <tbody>
  4227. <tr>
  4228. <td>
  4229. <code>value</code></br>
  4230. <em>
  4231. string
  4232. </em>
  4233. </td>
  4234. <td>
  4235. <em>(Optional)</em>
  4236. <p>Value can be specified directly to set a value without using a secret.</p>
  4237. </td>
  4238. </tr>
  4239. <tr>
  4240. <td>
  4241. <code>secretRef</code></br>
  4242. <em>
  4243. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4244. External Secrets meta/v1.SecretKeySelector
  4245. </a>
  4246. </em>
  4247. </td>
  4248. <td>
  4249. <em>(Optional)</em>
  4250. <p>SecretRef references a key in a secret that will be used as value.</p>
  4251. </td>
  4252. </tr>
  4253. </tbody>
  4254. </table>
  4255. <h3 id="external-secrets.io/v1.Device42Auth">Device42Auth
  4256. </h3>
  4257. <p>
  4258. (<em>Appears on:</em>
  4259. <a href="#external-secrets.io/v1.Device42Provider">Device42Provider</a>)
  4260. </p>
  4261. <p>
  4262. </p>
  4263. <table>
  4264. <thead>
  4265. <tr>
  4266. <th>Field</th>
  4267. <th>Description</th>
  4268. </tr>
  4269. </thead>
  4270. <tbody>
  4271. <tr>
  4272. <td>
  4273. <code>secretRef</code></br>
  4274. <em>
  4275. <a href="#external-secrets.io/v1.Device42SecretRef">
  4276. Device42SecretRef
  4277. </a>
  4278. </em>
  4279. </td>
  4280. <td>
  4281. </td>
  4282. </tr>
  4283. </tbody>
  4284. </table>
  4285. <h3 id="external-secrets.io/v1.Device42Provider">Device42Provider
  4286. </h3>
  4287. <p>
  4288. (<em>Appears on:</em>
  4289. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4290. </p>
  4291. <p>
  4292. <p>Device42Provider configures a store to sync secrets with a Device42 instance.</p>
  4293. </p>
  4294. <table>
  4295. <thead>
  4296. <tr>
  4297. <th>Field</th>
  4298. <th>Description</th>
  4299. </tr>
  4300. </thead>
  4301. <tbody>
  4302. <tr>
  4303. <td>
  4304. <code>host</code></br>
  4305. <em>
  4306. string
  4307. </em>
  4308. </td>
  4309. <td>
  4310. <p>URL configures the Device42 instance URL.</p>
  4311. </td>
  4312. </tr>
  4313. <tr>
  4314. <td>
  4315. <code>auth</code></br>
  4316. <em>
  4317. <a href="#external-secrets.io/v1.Device42Auth">
  4318. Device42Auth
  4319. </a>
  4320. </em>
  4321. </td>
  4322. <td>
  4323. <p>Auth configures how secret-manager authenticates with a Device42 instance.</p>
  4324. </td>
  4325. </tr>
  4326. </tbody>
  4327. </table>
  4328. <h3 id="external-secrets.io/v1.Device42SecretRef">Device42SecretRef
  4329. </h3>
  4330. <p>
  4331. (<em>Appears on:</em>
  4332. <a href="#external-secrets.io/v1.Device42Auth">Device42Auth</a>)
  4333. </p>
  4334. <p>
  4335. </p>
  4336. <table>
  4337. <thead>
  4338. <tr>
  4339. <th>Field</th>
  4340. <th>Description</th>
  4341. </tr>
  4342. </thead>
  4343. <tbody>
  4344. <tr>
  4345. <td>
  4346. <code>credentials</code></br>
  4347. <em>
  4348. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4349. External Secrets meta/v1.SecretKeySelector
  4350. </a>
  4351. </em>
  4352. </td>
  4353. <td>
  4354. <em>(Optional)</em>
  4355. <p>Username / Password is used for authentication.</p>
  4356. </td>
  4357. </tr>
  4358. </tbody>
  4359. </table>
  4360. <h3 id="external-secrets.io/v1.DopplerAuth">DopplerAuth
  4361. </h3>
  4362. <p>
  4363. (<em>Appears on:</em>
  4364. <a href="#external-secrets.io/v1.DopplerProvider">DopplerProvider</a>)
  4365. </p>
  4366. <p>
  4367. </p>
  4368. <table>
  4369. <thead>
  4370. <tr>
  4371. <th>Field</th>
  4372. <th>Description</th>
  4373. </tr>
  4374. </thead>
  4375. <tbody>
  4376. <tr>
  4377. <td>
  4378. <code>secretRef</code></br>
  4379. <em>
  4380. <a href="#external-secrets.io/v1.DopplerAuthSecretRef">
  4381. DopplerAuthSecretRef
  4382. </a>
  4383. </em>
  4384. </td>
  4385. <td>
  4386. </td>
  4387. </tr>
  4388. </tbody>
  4389. </table>
  4390. <h3 id="external-secrets.io/v1.DopplerAuthSecretRef">DopplerAuthSecretRef
  4391. </h3>
  4392. <p>
  4393. (<em>Appears on:</em>
  4394. <a href="#external-secrets.io/v1.DopplerAuth">DopplerAuth</a>)
  4395. </p>
  4396. <p>
  4397. </p>
  4398. <table>
  4399. <thead>
  4400. <tr>
  4401. <th>Field</th>
  4402. <th>Description</th>
  4403. </tr>
  4404. </thead>
  4405. <tbody>
  4406. <tr>
  4407. <td>
  4408. <code>dopplerToken</code></br>
  4409. <em>
  4410. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4411. External Secrets meta/v1.SecretKeySelector
  4412. </a>
  4413. </em>
  4414. </td>
  4415. <td>
  4416. <p>The DopplerToken is used for authentication.
  4417. See <a href="https://docs.doppler.com/reference/api#authentication">https://docs.doppler.com/reference/api#authentication</a> for auth token types.
  4418. The Key attribute defaults to dopplerToken if not specified.</p>
  4419. </td>
  4420. </tr>
  4421. </tbody>
  4422. </table>
  4423. <h3 id="external-secrets.io/v1.DopplerProvider">DopplerProvider
  4424. </h3>
  4425. <p>
  4426. (<em>Appears on:</em>
  4427. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4428. </p>
  4429. <p>
  4430. <p>DopplerProvider configures a store to sync secrets using the Doppler provider.
  4431. Project and Config are required if not using a Service Token.</p>
  4432. </p>
  4433. <table>
  4434. <thead>
  4435. <tr>
  4436. <th>Field</th>
  4437. <th>Description</th>
  4438. </tr>
  4439. </thead>
  4440. <tbody>
  4441. <tr>
  4442. <td>
  4443. <code>auth</code></br>
  4444. <em>
  4445. <a href="#external-secrets.io/v1.DopplerAuth">
  4446. DopplerAuth
  4447. </a>
  4448. </em>
  4449. </td>
  4450. <td>
  4451. <p>Auth configures how the Operator authenticates with the Doppler API</p>
  4452. </td>
  4453. </tr>
  4454. <tr>
  4455. <td>
  4456. <code>project</code></br>
  4457. <em>
  4458. string
  4459. </em>
  4460. </td>
  4461. <td>
  4462. <em>(Optional)</em>
  4463. <p>Doppler project (required if not using a Service Token)</p>
  4464. </td>
  4465. </tr>
  4466. <tr>
  4467. <td>
  4468. <code>config</code></br>
  4469. <em>
  4470. string
  4471. </em>
  4472. </td>
  4473. <td>
  4474. <em>(Optional)</em>
  4475. <p>Doppler config (required if not using a Service Token)</p>
  4476. </td>
  4477. </tr>
  4478. <tr>
  4479. <td>
  4480. <code>nameTransformer</code></br>
  4481. <em>
  4482. string
  4483. </em>
  4484. </td>
  4485. <td>
  4486. <em>(Optional)</em>
  4487. <p>Environment variable compatible name transforms that change secret names to a different format</p>
  4488. </td>
  4489. </tr>
  4490. <tr>
  4491. <td>
  4492. <code>format</code></br>
  4493. <em>
  4494. string
  4495. </em>
  4496. </td>
  4497. <td>
  4498. <em>(Optional)</em>
  4499. <p>Format enables the downloading of secrets as a file (string)</p>
  4500. </td>
  4501. </tr>
  4502. </tbody>
  4503. </table>
  4504. <h3 id="external-secrets.io/v1.ExternalSecret">ExternalSecret
  4505. </h3>
  4506. <p>
  4507. <p>ExternalSecret is the Schema for the external-secrets API.</p>
  4508. </p>
  4509. <table>
  4510. <thead>
  4511. <tr>
  4512. <th>Field</th>
  4513. <th>Description</th>
  4514. </tr>
  4515. </thead>
  4516. <tbody>
  4517. <tr>
  4518. <td>
  4519. <code>metadata</code></br>
  4520. <em>
  4521. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  4522. Kubernetes meta/v1.ObjectMeta
  4523. </a>
  4524. </em>
  4525. </td>
  4526. <td>
  4527. Refer to the Kubernetes API documentation for the fields of the
  4528. <code>metadata</code> field.
  4529. </td>
  4530. </tr>
  4531. <tr>
  4532. <td>
  4533. <code>spec</code></br>
  4534. <em>
  4535. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  4536. ExternalSecretSpec
  4537. </a>
  4538. </em>
  4539. </td>
  4540. <td>
  4541. <br/>
  4542. <br/>
  4543. <table>
  4544. <tr>
  4545. <td>
  4546. <code>secretStoreRef</code></br>
  4547. <em>
  4548. <a href="#external-secrets.io/v1.SecretStoreRef">
  4549. SecretStoreRef
  4550. </a>
  4551. </em>
  4552. </td>
  4553. <td>
  4554. <em>(Optional)</em>
  4555. </td>
  4556. </tr>
  4557. <tr>
  4558. <td>
  4559. <code>target</code></br>
  4560. <em>
  4561. <a href="#external-secrets.io/v1.ExternalSecretTarget">
  4562. ExternalSecretTarget
  4563. </a>
  4564. </em>
  4565. </td>
  4566. <td>
  4567. <em>(Optional)</em>
  4568. </td>
  4569. </tr>
  4570. <tr>
  4571. <td>
  4572. <code>refreshPolicy</code></br>
  4573. <em>
  4574. <a href="#external-secrets.io/v1.ExternalSecretRefreshPolicy">
  4575. ExternalSecretRefreshPolicy
  4576. </a>
  4577. </em>
  4578. </td>
  4579. <td>
  4580. <em>(Optional)</em>
  4581. <p>RefreshPolicy determines how the ExternalSecret should be refreshed:
  4582. - CreatedOnce: Creates the Secret only if it does not exist and does not update it thereafter
  4583. - Periodic: Synchronizes the Secret from the external source at regular intervals specified by refreshInterval.
  4584. No periodic updates occur if refreshInterval is 0.
  4585. - OnChange: Only synchronizes the Secret when the ExternalSecret&rsquo;s metadata or specification changes</p>
  4586. </td>
  4587. </tr>
  4588. <tr>
  4589. <td>
  4590. <code>refreshInterval</code></br>
  4591. <em>
  4592. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  4593. Kubernetes meta/v1.Duration
  4594. </a>
  4595. </em>
  4596. </td>
  4597. <td>
  4598. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider,
  4599. specified as Golang Duration strings.
  4600. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  4601. Example values: &ldquo;1h&rdquo;, &ldquo;2h30m&rdquo;, &ldquo;10s&rdquo;
  4602. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  4603. </td>
  4604. </tr>
  4605. <tr>
  4606. <td>
  4607. <code>data</code></br>
  4608. <em>
  4609. <a href="#external-secrets.io/v1.ExternalSecretData">
  4610. []ExternalSecretData
  4611. </a>
  4612. </em>
  4613. </td>
  4614. <td>
  4615. <em>(Optional)</em>
  4616. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  4617. </td>
  4618. </tr>
  4619. <tr>
  4620. <td>
  4621. <code>dataFrom</code></br>
  4622. <em>
  4623. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">
  4624. []ExternalSecretDataFromRemoteRef
  4625. </a>
  4626. </em>
  4627. </td>
  4628. <td>
  4629. <em>(Optional)</em>
  4630. <p>DataFrom is used to fetch all properties from a specific Provider data
  4631. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  4632. </td>
  4633. </tr>
  4634. </table>
  4635. </td>
  4636. </tr>
  4637. <tr>
  4638. <td>
  4639. <code>status</code></br>
  4640. <em>
  4641. <a href="#external-secrets.io/v1.ExternalSecretStatus">
  4642. ExternalSecretStatus
  4643. </a>
  4644. </em>
  4645. </td>
  4646. <td>
  4647. </td>
  4648. </tr>
  4649. </tbody>
  4650. </table>
  4651. <h3 id="external-secrets.io/v1.ExternalSecretConditionType">ExternalSecretConditionType
  4652. (<code>string</code> alias)</p></h3>
  4653. <p>
  4654. (<em>Appears on:</em>
  4655. <a href="#external-secrets.io/v1.ExternalSecretStatusCondition">ExternalSecretStatusCondition</a>)
  4656. </p>
  4657. <p>
  4658. </p>
  4659. <table>
  4660. <thead>
  4661. <tr>
  4662. <th>Value</th>
  4663. <th>Description</th>
  4664. </tr>
  4665. </thead>
  4666. <tbody><tr><td><p>&#34;Deleted&#34;</p></td>
  4667. <td></td>
  4668. </tr><tr><td><p>&#34;Ready&#34;</p></td>
  4669. <td></td>
  4670. </tr></tbody>
  4671. </table>
  4672. <h3 id="external-secrets.io/v1.ExternalSecretConversionStrategy">ExternalSecretConversionStrategy
  4673. (<code>string</code> alias)</p></h3>
  4674. <p>
  4675. (<em>Appears on:</em>
  4676. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  4677. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  4678. </p>
  4679. <p>
  4680. </p>
  4681. <table>
  4682. <thead>
  4683. <tr>
  4684. <th>Value</th>
  4685. <th>Description</th>
  4686. </tr>
  4687. </thead>
  4688. <tbody><tr><td><p>&#34;Default&#34;</p></td>
  4689. <td></td>
  4690. </tr><tr><td><p>&#34;Unicode&#34;</p></td>
  4691. <td></td>
  4692. </tr></tbody>
  4693. </table>
  4694. <h3 id="external-secrets.io/v1.ExternalSecretCreationPolicy">ExternalSecretCreationPolicy
  4695. (<code>string</code> alias)</p></h3>
  4696. <p>
  4697. (<em>Appears on:</em>
  4698. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  4699. </p>
  4700. <p>
  4701. <p>ExternalSecretCreationPolicy defines rules on how to create the resulting Secret.</p>
  4702. </p>
  4703. <table>
  4704. <thead>
  4705. <tr>
  4706. <th>Value</th>
  4707. <th>Description</th>
  4708. </tr>
  4709. </thead>
  4710. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  4711. <td><p>Merge does not create the Secret, but merges the data fields to the Secret.</p>
  4712. </td>
  4713. </tr><tr><td><p>&#34;None&#34;</p></td>
  4714. <td><p>None does not create a Secret (future use with injector).</p>
  4715. </td>
  4716. </tr><tr><td><p>&#34;Orphan&#34;</p></td>
  4717. <td><p>Orphan creates the Secret and does not set the ownerReference.
  4718. I.e. it will be orphaned after the deletion of the ExternalSecret.</p>
  4719. </td>
  4720. </tr><tr><td><p>&#34;Owner&#34;</p></td>
  4721. <td><p>Owner creates the Secret and sets .metadata.ownerReferences to the ExternalSecret resource.</p>
  4722. </td>
  4723. </tr></tbody>
  4724. </table>
  4725. <h3 id="external-secrets.io/v1.ExternalSecretData">ExternalSecretData
  4726. </h3>
  4727. <p>
  4728. (<em>Appears on:</em>
  4729. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4730. </p>
  4731. <p>
  4732. <p>ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.</p>
  4733. </p>
  4734. <table>
  4735. <thead>
  4736. <tr>
  4737. <th>Field</th>
  4738. <th>Description</th>
  4739. </tr>
  4740. </thead>
  4741. <tbody>
  4742. <tr>
  4743. <td>
  4744. <code>secretKey</code></br>
  4745. <em>
  4746. string
  4747. </em>
  4748. </td>
  4749. <td>
  4750. <p>The key in the Kubernetes Secret to store the value.</p>
  4751. </td>
  4752. </tr>
  4753. <tr>
  4754. <td>
  4755. <code>remoteRef</code></br>
  4756. <em>
  4757. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">
  4758. ExternalSecretDataRemoteRef
  4759. </a>
  4760. </em>
  4761. </td>
  4762. <td>
  4763. <p>RemoteRef points to the remote secret and defines
  4764. which secret (version/property/..) to fetch.</p>
  4765. </td>
  4766. </tr>
  4767. <tr>
  4768. <td>
  4769. <code>sourceRef</code></br>
  4770. <em>
  4771. <a href="#external-secrets.io/v1.StoreSourceRef">
  4772. StoreSourceRef
  4773. </a>
  4774. </em>
  4775. </td>
  4776. <td>
  4777. <p>SourceRef allows you to override the source
  4778. from which the value will be pulled.</p>
  4779. </td>
  4780. </tr>
  4781. </tbody>
  4782. </table>
  4783. <h3 id="external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef
  4784. </h3>
  4785. <p>
  4786. (<em>Appears on:</em>
  4787. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4788. </p>
  4789. <p>
  4790. </p>
  4791. <table>
  4792. <thead>
  4793. <tr>
  4794. <th>Field</th>
  4795. <th>Description</th>
  4796. </tr>
  4797. </thead>
  4798. <tbody>
  4799. <tr>
  4800. <td>
  4801. <code>extract</code></br>
  4802. <em>
  4803. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">
  4804. ExternalSecretDataRemoteRef
  4805. </a>
  4806. </em>
  4807. </td>
  4808. <td>
  4809. <em>(Optional)</em>
  4810. <p>Used to extract multiple key/value pairs from one secret
  4811. Note: Extract does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  4812. </td>
  4813. </tr>
  4814. <tr>
  4815. <td>
  4816. <code>find</code></br>
  4817. <em>
  4818. <a href="#external-secrets.io/v1.ExternalSecretFind">
  4819. ExternalSecretFind
  4820. </a>
  4821. </em>
  4822. </td>
  4823. <td>
  4824. <em>(Optional)</em>
  4825. <p>Used to find secrets based on tags or regular expressions
  4826. Note: Find does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  4827. </td>
  4828. </tr>
  4829. <tr>
  4830. <td>
  4831. <code>rewrite</code></br>
  4832. <em>
  4833. <a href="#external-secrets.io/v1.ExternalSecretRewrite">
  4834. []ExternalSecretRewrite
  4835. </a>
  4836. </em>
  4837. </td>
  4838. <td>
  4839. <em>(Optional)</em>
  4840. <p>Used to rewrite secret Keys after getting them from the secret Provider
  4841. Multiple Rewrite operations can be provided. They are applied in a layered order (first to last)</p>
  4842. </td>
  4843. </tr>
  4844. <tr>
  4845. <td>
  4846. <code>sourceRef</code></br>
  4847. <em>
  4848. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">
  4849. StoreGeneratorSourceRef
  4850. </a>
  4851. </em>
  4852. </td>
  4853. <td>
  4854. <p>SourceRef points to a store or generator
  4855. which contains secret values ready to use.
  4856. Use this in combination with Extract or Find pull values out of
  4857. a specific SecretStore.
  4858. When sourceRef points to a generator Extract or Find is not supported.
  4859. The generator returns a static map of values</p>
  4860. </td>
  4861. </tr>
  4862. </tbody>
  4863. </table>
  4864. <h3 id="external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef
  4865. </h3>
  4866. <p>
  4867. (<em>Appears on:</em>
  4868. <a href="#external-secrets.io/v1.ExternalSecretData">ExternalSecretData</a>,
  4869. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  4870. </p>
  4871. <p>
  4872. <p>ExternalSecretDataRemoteRef defines Provider data location.</p>
  4873. </p>
  4874. <table>
  4875. <thead>
  4876. <tr>
  4877. <th>Field</th>
  4878. <th>Description</th>
  4879. </tr>
  4880. </thead>
  4881. <tbody>
  4882. <tr>
  4883. <td>
  4884. <code>key</code></br>
  4885. <em>
  4886. string
  4887. </em>
  4888. </td>
  4889. <td>
  4890. <p>Key is the key used in the Provider, mandatory</p>
  4891. </td>
  4892. </tr>
  4893. <tr>
  4894. <td>
  4895. <code>metadataPolicy</code></br>
  4896. <em>
  4897. <a href="#external-secrets.io/v1.ExternalSecretMetadataPolicy">
  4898. ExternalSecretMetadataPolicy
  4899. </a>
  4900. </em>
  4901. </td>
  4902. <td>
  4903. <em>(Optional)</em>
  4904. <p>Policy for fetching tags/labels from provider secrets, possible options are Fetch, None. Defaults to None</p>
  4905. </td>
  4906. </tr>
  4907. <tr>
  4908. <td>
  4909. <code>property</code></br>
  4910. <em>
  4911. string
  4912. </em>
  4913. </td>
  4914. <td>
  4915. <em>(Optional)</em>
  4916. <p>Used to select a specific property of the Provider value (if a map), if supported</p>
  4917. </td>
  4918. </tr>
  4919. <tr>
  4920. <td>
  4921. <code>version</code></br>
  4922. <em>
  4923. string
  4924. </em>
  4925. </td>
  4926. <td>
  4927. <em>(Optional)</em>
  4928. <p>Used to select a specific version of the Provider value, if supported</p>
  4929. </td>
  4930. </tr>
  4931. <tr>
  4932. <td>
  4933. <code>conversionStrategy</code></br>
  4934. <em>
  4935. <a href="#external-secrets.io/v1.ExternalSecretConversionStrategy">
  4936. ExternalSecretConversionStrategy
  4937. </a>
  4938. </em>
  4939. </td>
  4940. <td>
  4941. <em>(Optional)</em>
  4942. <p>Used to define a conversion Strategy</p>
  4943. </td>
  4944. </tr>
  4945. <tr>
  4946. <td>
  4947. <code>decodingStrategy</code></br>
  4948. <em>
  4949. <a href="#external-secrets.io/v1.ExternalSecretDecodingStrategy">
  4950. ExternalSecretDecodingStrategy
  4951. </a>
  4952. </em>
  4953. </td>
  4954. <td>
  4955. <em>(Optional)</em>
  4956. <p>Used to define a decoding Strategy</p>
  4957. </td>
  4958. </tr>
  4959. </tbody>
  4960. </table>
  4961. <h3 id="external-secrets.io/v1.ExternalSecretDecodingStrategy">ExternalSecretDecodingStrategy
  4962. (<code>string</code> alias)</p></h3>
  4963. <p>
  4964. (<em>Appears on:</em>
  4965. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  4966. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  4967. </p>
  4968. <p>
  4969. </p>
  4970. <table>
  4971. <thead>
  4972. <tr>
  4973. <th>Value</th>
  4974. <th>Description</th>
  4975. </tr>
  4976. </thead>
  4977. <tbody><tr><td><p>&#34;Auto&#34;</p></td>
  4978. <td></td>
  4979. </tr><tr><td><p>&#34;Base64&#34;</p></td>
  4980. <td></td>
  4981. </tr><tr><td><p>&#34;Base64URL&#34;</p></td>
  4982. <td></td>
  4983. </tr><tr><td><p>&#34;None&#34;</p></td>
  4984. <td></td>
  4985. </tr></tbody>
  4986. </table>
  4987. <h3 id="external-secrets.io/v1.ExternalSecretDeletionPolicy">ExternalSecretDeletionPolicy
  4988. (<code>string</code> alias)</p></h3>
  4989. <p>
  4990. (<em>Appears on:</em>
  4991. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  4992. </p>
  4993. <p>
  4994. <p>ExternalSecretDeletionPolicy defines rules on how to delete the resulting Secret.</p>
  4995. </p>
  4996. <table>
  4997. <thead>
  4998. <tr>
  4999. <th>Value</th>
  5000. <th>Description</th>
  5001. </tr>
  5002. </thead>
  5003. <tbody><tr><td><p>&#34;Delete&#34;</p></td>
  5004. <td><p>Delete deletes the secret if all provider secrets are deleted.
  5005. If a secret gets deleted on the provider side and is not accessible
  5006. anymore this is not considered an error and the ExternalSecret
  5007. does not go into SecretSyncedError status.</p>
  5008. </td>
  5009. </tr><tr><td><p>&#34;Merge&#34;</p></td>
  5010. <td><p>Merge removes keys in the secret, but not the secret itself.
  5011. If a secret gets deleted on the provider side and is not accessible
  5012. anymore this is not considered an error and the ExternalSecret
  5013. does not go into SecretSyncedError status.</p>
  5014. </td>
  5015. </tr><tr><td><p>&#34;Retain&#34;</p></td>
  5016. <td><p>Retain will retain the secret if all provider secrets have been deleted.
  5017. If a provider secret does not exist the ExternalSecret gets into the
  5018. SecretSyncedError status.</p>
  5019. </td>
  5020. </tr></tbody>
  5021. </table>
  5022. <h3 id="external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind
  5023. </h3>
  5024. <p>
  5025. (<em>Appears on:</em>
  5026. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  5027. </p>
  5028. <p>
  5029. </p>
  5030. <table>
  5031. <thead>
  5032. <tr>
  5033. <th>Field</th>
  5034. <th>Description</th>
  5035. </tr>
  5036. </thead>
  5037. <tbody>
  5038. <tr>
  5039. <td>
  5040. <code>path</code></br>
  5041. <em>
  5042. string
  5043. </em>
  5044. </td>
  5045. <td>
  5046. <em>(Optional)</em>
  5047. <p>A root path to start the find operations.</p>
  5048. </td>
  5049. </tr>
  5050. <tr>
  5051. <td>
  5052. <code>name</code></br>
  5053. <em>
  5054. <a href="#external-secrets.io/v1.FindName">
  5055. FindName
  5056. </a>
  5057. </em>
  5058. </td>
  5059. <td>
  5060. <em>(Optional)</em>
  5061. <p>Finds secrets based on the name.</p>
  5062. </td>
  5063. </tr>
  5064. <tr>
  5065. <td>
  5066. <code>tags</code></br>
  5067. <em>
  5068. map[string]string
  5069. </em>
  5070. </td>
  5071. <td>
  5072. <em>(Optional)</em>
  5073. <p>Find secrets based on tags.</p>
  5074. </td>
  5075. </tr>
  5076. <tr>
  5077. <td>
  5078. <code>conversionStrategy</code></br>
  5079. <em>
  5080. <a href="#external-secrets.io/v1.ExternalSecretConversionStrategy">
  5081. ExternalSecretConversionStrategy
  5082. </a>
  5083. </em>
  5084. </td>
  5085. <td>
  5086. <em>(Optional)</em>
  5087. <p>Used to define a conversion Strategy</p>
  5088. </td>
  5089. </tr>
  5090. <tr>
  5091. <td>
  5092. <code>decodingStrategy</code></br>
  5093. <em>
  5094. <a href="#external-secrets.io/v1.ExternalSecretDecodingStrategy">
  5095. ExternalSecretDecodingStrategy
  5096. </a>
  5097. </em>
  5098. </td>
  5099. <td>
  5100. <em>(Optional)</em>
  5101. <p>Used to define a decoding Strategy</p>
  5102. </td>
  5103. </tr>
  5104. </tbody>
  5105. </table>
  5106. <h3 id="external-secrets.io/v1.ExternalSecretMetadata">ExternalSecretMetadata
  5107. </h3>
  5108. <p>
  5109. (<em>Appears on:</em>
  5110. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>)
  5111. </p>
  5112. <p>
  5113. <p>ExternalSecretMetadata defines metadata fields for the ExternalSecret generated by the ClusterExternalSecret.</p>
  5114. </p>
  5115. <table>
  5116. <thead>
  5117. <tr>
  5118. <th>Field</th>
  5119. <th>Description</th>
  5120. </tr>
  5121. </thead>
  5122. <tbody>
  5123. <tr>
  5124. <td>
  5125. <code>annotations</code></br>
  5126. <em>
  5127. map[string]string
  5128. </em>
  5129. </td>
  5130. <td>
  5131. <em>(Optional)</em>
  5132. </td>
  5133. </tr>
  5134. <tr>
  5135. <td>
  5136. <code>labels</code></br>
  5137. <em>
  5138. map[string]string
  5139. </em>
  5140. </td>
  5141. <td>
  5142. <em>(Optional)</em>
  5143. </td>
  5144. </tr>
  5145. </tbody>
  5146. </table>
  5147. <h3 id="external-secrets.io/v1.ExternalSecretMetadataPolicy">ExternalSecretMetadataPolicy
  5148. (<code>string</code> alias)</p></h3>
  5149. <p>
  5150. (<em>Appears on:</em>
  5151. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>)
  5152. </p>
  5153. <p>
  5154. </p>
  5155. <table>
  5156. <thead>
  5157. <tr>
  5158. <th>Value</th>
  5159. <th>Description</th>
  5160. </tr>
  5161. </thead>
  5162. <tbody><tr><td><p>&#34;Fetch&#34;</p></td>
  5163. <td></td>
  5164. </tr><tr><td><p>&#34;None&#34;</p></td>
  5165. <td></td>
  5166. </tr></tbody>
  5167. </table>
  5168. <h3 id="external-secrets.io/v1.ExternalSecretRefreshPolicy">ExternalSecretRefreshPolicy
  5169. (<code>string</code> alias)</p></h3>
  5170. <p>
  5171. (<em>Appears on:</em>
  5172. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  5173. </p>
  5174. <p>
  5175. </p>
  5176. <table>
  5177. <thead>
  5178. <tr>
  5179. <th>Value</th>
  5180. <th>Description</th>
  5181. </tr>
  5182. </thead>
  5183. <tbody><tr><td><p>&#34;CreatedOnce&#34;</p></td>
  5184. <td></td>
  5185. </tr><tr><td><p>&#34;OnChange&#34;</p></td>
  5186. <td></td>
  5187. </tr><tr><td><p>&#34;Periodic&#34;</p></td>
  5188. <td></td>
  5189. </tr></tbody>
  5190. </table>
  5191. <h3 id="external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite
  5192. </h3>
  5193. <p>
  5194. (<em>Appears on:</em>
  5195. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  5196. </p>
  5197. <p>
  5198. </p>
  5199. <table>
  5200. <thead>
  5201. <tr>
  5202. <th>Field</th>
  5203. <th>Description</th>
  5204. </tr>
  5205. </thead>
  5206. <tbody>
  5207. <tr>
  5208. <td>
  5209. <code>merge</code></br>
  5210. <em>
  5211. <a href="#external-secrets.io/v1.ExternalSecretRewriteMerge">
  5212. ExternalSecretRewriteMerge
  5213. </a>
  5214. </em>
  5215. </td>
  5216. <td>
  5217. <em>(Optional)</em>
  5218. <p>Used to merge key/values in one single Secret
  5219. The resulting key will contain all values from the specified secrets</p>
  5220. </td>
  5221. </tr>
  5222. <tr>
  5223. <td>
  5224. <code>regexp</code></br>
  5225. <em>
  5226. <a href="#external-secrets.io/v1.ExternalSecretRewriteRegexp">
  5227. ExternalSecretRewriteRegexp
  5228. </a>
  5229. </em>
  5230. </td>
  5231. <td>
  5232. <em>(Optional)</em>
  5233. <p>Used to rewrite with regular expressions.
  5234. The resulting key will be the output of a regexp.ReplaceAll operation.</p>
  5235. </td>
  5236. </tr>
  5237. <tr>
  5238. <td>
  5239. <code>transform</code></br>
  5240. <em>
  5241. <a href="#external-secrets.io/v1.ExternalSecretRewriteTransform">
  5242. ExternalSecretRewriteTransform
  5243. </a>
  5244. </em>
  5245. </td>
  5246. <td>
  5247. <em>(Optional)</em>
  5248. <p>Used to apply string transformation on the secrets.
  5249. The resulting key will be the output of the template applied by the operation.</p>
  5250. </td>
  5251. </tr>
  5252. </tbody>
  5253. </table>
  5254. <h3 id="external-secrets.io/v1.ExternalSecretRewriteMerge">ExternalSecretRewriteMerge
  5255. </h3>
  5256. <p>
  5257. (<em>Appears on:</em>
  5258. <a href="#external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  5259. </p>
  5260. <p>
  5261. </p>
  5262. <table>
  5263. <thead>
  5264. <tr>
  5265. <th>Field</th>
  5266. <th>Description</th>
  5267. </tr>
  5268. </thead>
  5269. <tbody>
  5270. <tr>
  5271. <td>
  5272. <code>into</code></br>
  5273. <em>
  5274. string
  5275. </em>
  5276. </td>
  5277. <td>
  5278. <em>(Optional)</em>
  5279. <p>Used to define the target key of the merge operation.
  5280. Required if strategy is JSON. Ignored otherwise.</p>
  5281. </td>
  5282. </tr>
  5283. <tr>
  5284. <td>
  5285. <code>priority</code></br>
  5286. <em>
  5287. []string
  5288. </em>
  5289. </td>
  5290. <td>
  5291. <em>(Optional)</em>
  5292. <p>Used to define key priority in conflict resolution.</p>
  5293. </td>
  5294. </tr>
  5295. <tr>
  5296. <td>
  5297. <code>conflictPolicy</code></br>
  5298. <em>
  5299. <a href="#external-secrets.io/v1.ExternalSecretRewriteMergeConflictPolicy">
  5300. ExternalSecretRewriteMergeConflictPolicy
  5301. </a>
  5302. </em>
  5303. </td>
  5304. <td>
  5305. <em>(Optional)</em>
  5306. <p>Used to define the policy to use in conflict resolution.</p>
  5307. </td>
  5308. </tr>
  5309. <tr>
  5310. <td>
  5311. <code>strategy</code></br>
  5312. <em>
  5313. <a href="#external-secrets.io/v1.ExternalSecretRewriteMergeStrategy">
  5314. ExternalSecretRewriteMergeStrategy
  5315. </a>
  5316. </em>
  5317. </td>
  5318. <td>
  5319. <em>(Optional)</em>
  5320. <p>Used to define the strategy to use in the merge operation.</p>
  5321. </td>
  5322. </tr>
  5323. </tbody>
  5324. </table>
  5325. <h3 id="external-secrets.io/v1.ExternalSecretRewriteMergeConflictPolicy">ExternalSecretRewriteMergeConflictPolicy
  5326. (<code>string</code> alias)</p></h3>
  5327. <p>
  5328. (<em>Appears on:</em>
  5329. <a href="#external-secrets.io/v1.ExternalSecretRewriteMerge">ExternalSecretRewriteMerge</a>)
  5330. </p>
  5331. <p>
  5332. </p>
  5333. <table>
  5334. <thead>
  5335. <tr>
  5336. <th>Value</th>
  5337. <th>Description</th>
  5338. </tr>
  5339. </thead>
  5340. <tbody><tr><td><p>&#34;Error&#34;</p></td>
  5341. <td></td>
  5342. </tr><tr><td><p>&#34;Ignore&#34;</p></td>
  5343. <td></td>
  5344. </tr></tbody>
  5345. </table>
  5346. <h3 id="external-secrets.io/v1.ExternalSecretRewriteMergeStrategy">ExternalSecretRewriteMergeStrategy
  5347. (<code>string</code> alias)</p></h3>
  5348. <p>
  5349. (<em>Appears on:</em>
  5350. <a href="#external-secrets.io/v1.ExternalSecretRewriteMerge">ExternalSecretRewriteMerge</a>)
  5351. </p>
  5352. <p>
  5353. </p>
  5354. <table>
  5355. <thead>
  5356. <tr>
  5357. <th>Value</th>
  5358. <th>Description</th>
  5359. </tr>
  5360. </thead>
  5361. <tbody><tr><td><p>&#34;Extract&#34;</p></td>
  5362. <td></td>
  5363. </tr><tr><td><p>&#34;JSON&#34;</p></td>
  5364. <td></td>
  5365. </tr></tbody>
  5366. </table>
  5367. <h3 id="external-secrets.io/v1.ExternalSecretRewriteRegexp">ExternalSecretRewriteRegexp
  5368. </h3>
  5369. <p>
  5370. (<em>Appears on:</em>
  5371. <a href="#external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  5372. </p>
  5373. <p>
  5374. </p>
  5375. <table>
  5376. <thead>
  5377. <tr>
  5378. <th>Field</th>
  5379. <th>Description</th>
  5380. </tr>
  5381. </thead>
  5382. <tbody>
  5383. <tr>
  5384. <td>
  5385. <code>source</code></br>
  5386. <em>
  5387. string
  5388. </em>
  5389. </td>
  5390. <td>
  5391. <p>Used to define the regular expression of a re.Compiler.</p>
  5392. </td>
  5393. </tr>
  5394. <tr>
  5395. <td>
  5396. <code>target</code></br>
  5397. <em>
  5398. string
  5399. </em>
  5400. </td>
  5401. <td>
  5402. <p>Used to define the target pattern of a ReplaceAll operation.</p>
  5403. </td>
  5404. </tr>
  5405. </tbody>
  5406. </table>
  5407. <h3 id="external-secrets.io/v1.ExternalSecretRewriteTransform">ExternalSecretRewriteTransform
  5408. </h3>
  5409. <p>
  5410. (<em>Appears on:</em>
  5411. <a href="#external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  5412. </p>
  5413. <p>
  5414. </p>
  5415. <table>
  5416. <thead>
  5417. <tr>
  5418. <th>Field</th>
  5419. <th>Description</th>
  5420. </tr>
  5421. </thead>
  5422. <tbody>
  5423. <tr>
  5424. <td>
  5425. <code>template</code></br>
  5426. <em>
  5427. string
  5428. </em>
  5429. </td>
  5430. <td>
  5431. <p>Used to define the template to apply on the secret name.
  5432. <code>.value</code> will specify the secret name in the template.</p>
  5433. </td>
  5434. </tr>
  5435. </tbody>
  5436. </table>
  5437. <h3 id="external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec
  5438. </h3>
  5439. <p>
  5440. (<em>Appears on:</em>
  5441. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>,
  5442. <a href="#external-secrets.io/v1.ExternalSecret">ExternalSecret</a>)
  5443. </p>
  5444. <p>
  5445. <p>ExternalSecretSpec defines the desired state of ExternalSecret.</p>
  5446. </p>
  5447. <table>
  5448. <thead>
  5449. <tr>
  5450. <th>Field</th>
  5451. <th>Description</th>
  5452. </tr>
  5453. </thead>
  5454. <tbody>
  5455. <tr>
  5456. <td>
  5457. <code>secretStoreRef</code></br>
  5458. <em>
  5459. <a href="#external-secrets.io/v1.SecretStoreRef">
  5460. SecretStoreRef
  5461. </a>
  5462. </em>
  5463. </td>
  5464. <td>
  5465. <em>(Optional)</em>
  5466. </td>
  5467. </tr>
  5468. <tr>
  5469. <td>
  5470. <code>target</code></br>
  5471. <em>
  5472. <a href="#external-secrets.io/v1.ExternalSecretTarget">
  5473. ExternalSecretTarget
  5474. </a>
  5475. </em>
  5476. </td>
  5477. <td>
  5478. <em>(Optional)</em>
  5479. </td>
  5480. </tr>
  5481. <tr>
  5482. <td>
  5483. <code>refreshPolicy</code></br>
  5484. <em>
  5485. <a href="#external-secrets.io/v1.ExternalSecretRefreshPolicy">
  5486. ExternalSecretRefreshPolicy
  5487. </a>
  5488. </em>
  5489. </td>
  5490. <td>
  5491. <em>(Optional)</em>
  5492. <p>RefreshPolicy determines how the ExternalSecret should be refreshed:
  5493. - CreatedOnce: Creates the Secret only if it does not exist and does not update it thereafter
  5494. - Periodic: Synchronizes the Secret from the external source at regular intervals specified by refreshInterval.
  5495. No periodic updates occur if refreshInterval is 0.
  5496. - OnChange: Only synchronizes the Secret when the ExternalSecret&rsquo;s metadata or specification changes</p>
  5497. </td>
  5498. </tr>
  5499. <tr>
  5500. <td>
  5501. <code>refreshInterval</code></br>
  5502. <em>
  5503. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  5504. Kubernetes meta/v1.Duration
  5505. </a>
  5506. </em>
  5507. </td>
  5508. <td>
  5509. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider,
  5510. specified as Golang Duration strings.
  5511. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  5512. Example values: &ldquo;1h&rdquo;, &ldquo;2h30m&rdquo;, &ldquo;10s&rdquo;
  5513. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  5514. </td>
  5515. </tr>
  5516. <tr>
  5517. <td>
  5518. <code>data</code></br>
  5519. <em>
  5520. <a href="#external-secrets.io/v1.ExternalSecretData">
  5521. []ExternalSecretData
  5522. </a>
  5523. </em>
  5524. </td>
  5525. <td>
  5526. <em>(Optional)</em>
  5527. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  5528. </td>
  5529. </tr>
  5530. <tr>
  5531. <td>
  5532. <code>dataFrom</code></br>
  5533. <em>
  5534. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">
  5535. []ExternalSecretDataFromRemoteRef
  5536. </a>
  5537. </em>
  5538. </td>
  5539. <td>
  5540. <em>(Optional)</em>
  5541. <p>DataFrom is used to fetch all properties from a specific Provider data
  5542. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  5543. </td>
  5544. </tr>
  5545. </tbody>
  5546. </table>
  5547. <h3 id="external-secrets.io/v1.ExternalSecretStatus">ExternalSecretStatus
  5548. </h3>
  5549. <p>
  5550. (<em>Appears on:</em>
  5551. <a href="#external-secrets.io/v1.ExternalSecret">ExternalSecret</a>)
  5552. </p>
  5553. <p>
  5554. </p>
  5555. <table>
  5556. <thead>
  5557. <tr>
  5558. <th>Field</th>
  5559. <th>Description</th>
  5560. </tr>
  5561. </thead>
  5562. <tbody>
  5563. <tr>
  5564. <td>
  5565. <code>refreshTime</code></br>
  5566. <em>
  5567. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  5568. Kubernetes meta/v1.Time
  5569. </a>
  5570. </em>
  5571. </td>
  5572. <td>
  5573. <p>refreshTime is the time and date the external secret was fetched and
  5574. the target secret updated</p>
  5575. </td>
  5576. </tr>
  5577. <tr>
  5578. <td>
  5579. <code>syncedResourceVersion</code></br>
  5580. <em>
  5581. string
  5582. </em>
  5583. </td>
  5584. <td>
  5585. <p>SyncedResourceVersion keeps track of the last synced version</p>
  5586. </td>
  5587. </tr>
  5588. <tr>
  5589. <td>
  5590. <code>conditions</code></br>
  5591. <em>
  5592. <a href="#external-secrets.io/v1.ExternalSecretStatusCondition">
  5593. []ExternalSecretStatusCondition
  5594. </a>
  5595. </em>
  5596. </td>
  5597. <td>
  5598. <em>(Optional)</em>
  5599. </td>
  5600. </tr>
  5601. <tr>
  5602. <td>
  5603. <code>binding</code></br>
  5604. <em>
  5605. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#localobjectreference-v1-core">
  5606. Kubernetes core/v1.LocalObjectReference
  5607. </a>
  5608. </em>
  5609. </td>
  5610. <td>
  5611. <p>Binding represents a servicebinding.io Provisioned Service reference to the secret</p>
  5612. </td>
  5613. </tr>
  5614. </tbody>
  5615. </table>
  5616. <h3 id="external-secrets.io/v1.ExternalSecretStatusCondition">ExternalSecretStatusCondition
  5617. </h3>
  5618. <p>
  5619. (<em>Appears on:</em>
  5620. <a href="#external-secrets.io/v1.ExternalSecretStatus">ExternalSecretStatus</a>)
  5621. </p>
  5622. <p>
  5623. </p>
  5624. <table>
  5625. <thead>
  5626. <tr>
  5627. <th>Field</th>
  5628. <th>Description</th>
  5629. </tr>
  5630. </thead>
  5631. <tbody>
  5632. <tr>
  5633. <td>
  5634. <code>type</code></br>
  5635. <em>
  5636. <a href="#external-secrets.io/v1.ExternalSecretConditionType">
  5637. ExternalSecretConditionType
  5638. </a>
  5639. </em>
  5640. </td>
  5641. <td>
  5642. </td>
  5643. </tr>
  5644. <tr>
  5645. <td>
  5646. <code>status</code></br>
  5647. <em>
  5648. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  5649. Kubernetes core/v1.ConditionStatus
  5650. </a>
  5651. </em>
  5652. </td>
  5653. <td>
  5654. </td>
  5655. </tr>
  5656. <tr>
  5657. <td>
  5658. <code>reason</code></br>
  5659. <em>
  5660. string
  5661. </em>
  5662. </td>
  5663. <td>
  5664. <em>(Optional)</em>
  5665. </td>
  5666. </tr>
  5667. <tr>
  5668. <td>
  5669. <code>message</code></br>
  5670. <em>
  5671. string
  5672. </em>
  5673. </td>
  5674. <td>
  5675. <em>(Optional)</em>
  5676. </td>
  5677. </tr>
  5678. <tr>
  5679. <td>
  5680. <code>lastTransitionTime</code></br>
  5681. <em>
  5682. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  5683. Kubernetes meta/v1.Time
  5684. </a>
  5685. </em>
  5686. </td>
  5687. <td>
  5688. <em>(Optional)</em>
  5689. </td>
  5690. </tr>
  5691. </tbody>
  5692. </table>
  5693. <h3 id="external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget
  5694. </h3>
  5695. <p>
  5696. (<em>Appears on:</em>
  5697. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  5698. </p>
  5699. <p>
  5700. <p>ExternalSecretTarget defines the Kubernetes Secret to be created
  5701. There can be only one target per ExternalSecret.</p>
  5702. </p>
  5703. <table>
  5704. <thead>
  5705. <tr>
  5706. <th>Field</th>
  5707. <th>Description</th>
  5708. </tr>
  5709. </thead>
  5710. <tbody>
  5711. <tr>
  5712. <td>
  5713. <code>name</code></br>
  5714. <em>
  5715. string
  5716. </em>
  5717. </td>
  5718. <td>
  5719. <em>(Optional)</em>
  5720. <p>The name of the Secret resource to be managed.
  5721. Defaults to the .metadata.name of the ExternalSecret resource</p>
  5722. </td>
  5723. </tr>
  5724. <tr>
  5725. <td>
  5726. <code>creationPolicy</code></br>
  5727. <em>
  5728. <a href="#external-secrets.io/v1.ExternalSecretCreationPolicy">
  5729. ExternalSecretCreationPolicy
  5730. </a>
  5731. </em>
  5732. </td>
  5733. <td>
  5734. <em>(Optional)</em>
  5735. <p>CreationPolicy defines rules on how to create the resulting Secret.
  5736. Defaults to &ldquo;Owner&rdquo;</p>
  5737. </td>
  5738. </tr>
  5739. <tr>
  5740. <td>
  5741. <code>deletionPolicy</code></br>
  5742. <em>
  5743. <a href="#external-secrets.io/v1.ExternalSecretDeletionPolicy">
  5744. ExternalSecretDeletionPolicy
  5745. </a>
  5746. </em>
  5747. </td>
  5748. <td>
  5749. <em>(Optional)</em>
  5750. <p>DeletionPolicy defines rules on how to delete the resulting Secret.
  5751. Defaults to &ldquo;Retain&rdquo;</p>
  5752. </td>
  5753. </tr>
  5754. <tr>
  5755. <td>
  5756. <code>template</code></br>
  5757. <em>
  5758. <a href="#external-secrets.io/v1.ExternalSecretTemplate">
  5759. ExternalSecretTemplate
  5760. </a>
  5761. </em>
  5762. </td>
  5763. <td>
  5764. <em>(Optional)</em>
  5765. <p>Template defines a blueprint for the created Secret resource.</p>
  5766. </td>
  5767. </tr>
  5768. <tr>
  5769. <td>
  5770. <code>immutable</code></br>
  5771. <em>
  5772. bool
  5773. </em>
  5774. </td>
  5775. <td>
  5776. <em>(Optional)</em>
  5777. <p>Immutable defines if the final secret will be immutable</p>
  5778. </td>
  5779. </tr>
  5780. </tbody>
  5781. </table>
  5782. <h3 id="external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate
  5783. </h3>
  5784. <p>
  5785. (<em>Appears on:</em>
  5786. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  5787. </p>
  5788. <p>
  5789. <p>ExternalSecretTemplate defines a blueprint for the created Secret resource.
  5790. we can not use native corev1.Secret, it will have empty ObjectMeta values: <a href="https://github.com/kubernetes-sigs/controller-tools/issues/448">https://github.com/kubernetes-sigs/controller-tools/issues/448</a></p>
  5791. </p>
  5792. <table>
  5793. <thead>
  5794. <tr>
  5795. <th>Field</th>
  5796. <th>Description</th>
  5797. </tr>
  5798. </thead>
  5799. <tbody>
  5800. <tr>
  5801. <td>
  5802. <code>type</code></br>
  5803. <em>
  5804. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#secrettype-v1-core">
  5805. Kubernetes core/v1.SecretType
  5806. </a>
  5807. </em>
  5808. </td>
  5809. <td>
  5810. <em>(Optional)</em>
  5811. </td>
  5812. </tr>
  5813. <tr>
  5814. <td>
  5815. <code>engineVersion</code></br>
  5816. <em>
  5817. <a href="#external-secrets.io/v1.TemplateEngineVersion">
  5818. TemplateEngineVersion
  5819. </a>
  5820. </em>
  5821. </td>
  5822. <td>
  5823. <p>EngineVersion specifies the template engine version
  5824. that should be used to compile/execute the
  5825. template specified in .data and .templateFrom[].</p>
  5826. </td>
  5827. </tr>
  5828. <tr>
  5829. <td>
  5830. <code>metadata</code></br>
  5831. <em>
  5832. <a href="#external-secrets.io/v1.ExternalSecretTemplateMetadata">
  5833. ExternalSecretTemplateMetadata
  5834. </a>
  5835. </em>
  5836. </td>
  5837. <td>
  5838. <em>(Optional)</em>
  5839. </td>
  5840. </tr>
  5841. <tr>
  5842. <td>
  5843. <code>mergePolicy</code></br>
  5844. <em>
  5845. <a href="#external-secrets.io/v1.TemplateMergePolicy">
  5846. TemplateMergePolicy
  5847. </a>
  5848. </em>
  5849. </td>
  5850. <td>
  5851. </td>
  5852. </tr>
  5853. <tr>
  5854. <td>
  5855. <code>data</code></br>
  5856. <em>
  5857. map[string]string
  5858. </em>
  5859. </td>
  5860. <td>
  5861. <em>(Optional)</em>
  5862. </td>
  5863. </tr>
  5864. <tr>
  5865. <td>
  5866. <code>templateFrom</code></br>
  5867. <em>
  5868. <a href="#external-secrets.io/v1.TemplateFrom">
  5869. []TemplateFrom
  5870. </a>
  5871. </em>
  5872. </td>
  5873. <td>
  5874. <em>(Optional)</em>
  5875. </td>
  5876. </tr>
  5877. </tbody>
  5878. </table>
  5879. <h3 id="external-secrets.io/v1.ExternalSecretTemplateMetadata">ExternalSecretTemplateMetadata
  5880. </h3>
  5881. <p>
  5882. (<em>Appears on:</em>
  5883. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  5884. </p>
  5885. <p>
  5886. <p>ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.</p>
  5887. </p>
  5888. <table>
  5889. <thead>
  5890. <tr>
  5891. <th>Field</th>
  5892. <th>Description</th>
  5893. </tr>
  5894. </thead>
  5895. <tbody>
  5896. <tr>
  5897. <td>
  5898. <code>annotations</code></br>
  5899. <em>
  5900. map[string]string
  5901. </em>
  5902. </td>
  5903. <td>
  5904. <em>(Optional)</em>
  5905. </td>
  5906. </tr>
  5907. <tr>
  5908. <td>
  5909. <code>labels</code></br>
  5910. <em>
  5911. map[string]string
  5912. </em>
  5913. </td>
  5914. <td>
  5915. <em>(Optional)</em>
  5916. </td>
  5917. </tr>
  5918. <tr>
  5919. <td>
  5920. <code>finalizers</code></br>
  5921. <em>
  5922. []string
  5923. </em>
  5924. </td>
  5925. <td>
  5926. <em>(Optional)</em>
  5927. </td>
  5928. </tr>
  5929. </tbody>
  5930. </table>
  5931. <h3 id="external-secrets.io/v1.ExternalSecretValidator">ExternalSecretValidator
  5932. </h3>
  5933. <p>
  5934. </p>
  5935. <h3 id="external-secrets.io/v1.FakeProvider">FakeProvider
  5936. </h3>
  5937. <p>
  5938. (<em>Appears on:</em>
  5939. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  5940. </p>
  5941. <p>
  5942. <p>FakeProvider configures a fake provider that returns static values.</p>
  5943. </p>
  5944. <table>
  5945. <thead>
  5946. <tr>
  5947. <th>Field</th>
  5948. <th>Description</th>
  5949. </tr>
  5950. </thead>
  5951. <tbody>
  5952. <tr>
  5953. <td>
  5954. <code>data</code></br>
  5955. <em>
  5956. <a href="#external-secrets.io/v1.FakeProviderData">
  5957. []FakeProviderData
  5958. </a>
  5959. </em>
  5960. </td>
  5961. <td>
  5962. </td>
  5963. </tr>
  5964. <tr>
  5965. <td>
  5966. <code>validationResult</code></br>
  5967. <em>
  5968. <a href="#external-secrets.io/v1.ValidationResult">
  5969. ValidationResult
  5970. </a>
  5971. </em>
  5972. </td>
  5973. <td>
  5974. </td>
  5975. </tr>
  5976. </tbody>
  5977. </table>
  5978. <h3 id="external-secrets.io/v1.FakeProviderData">FakeProviderData
  5979. </h3>
  5980. <p>
  5981. (<em>Appears on:</em>
  5982. <a href="#external-secrets.io/v1.FakeProvider">FakeProvider</a>)
  5983. </p>
  5984. <p>
  5985. </p>
  5986. <table>
  5987. <thead>
  5988. <tr>
  5989. <th>Field</th>
  5990. <th>Description</th>
  5991. </tr>
  5992. </thead>
  5993. <tbody>
  5994. <tr>
  5995. <td>
  5996. <code>key</code></br>
  5997. <em>
  5998. string
  5999. </em>
  6000. </td>
  6001. <td>
  6002. </td>
  6003. </tr>
  6004. <tr>
  6005. <td>
  6006. <code>value</code></br>
  6007. <em>
  6008. string
  6009. </em>
  6010. </td>
  6011. <td>
  6012. </td>
  6013. </tr>
  6014. <tr>
  6015. <td>
  6016. <code>version</code></br>
  6017. <em>
  6018. string
  6019. </em>
  6020. </td>
  6021. <td>
  6022. </td>
  6023. </tr>
  6024. </tbody>
  6025. </table>
  6026. <h3 id="external-secrets.io/v1.FetchingPolicy">FetchingPolicy
  6027. </h3>
  6028. <p>
  6029. (<em>Appears on:</em>
  6030. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>,
  6031. <a href="#external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider</a>)
  6032. </p>
  6033. <p>
  6034. </p>
  6035. <table>
  6036. <thead>
  6037. <tr>
  6038. <th>Field</th>
  6039. <th>Description</th>
  6040. </tr>
  6041. </thead>
  6042. <tbody>
  6043. <tr>
  6044. <td>
  6045. <code>byID</code></br>
  6046. <em>
  6047. <a href="#external-secrets.io/v1.ByID">
  6048. ByID
  6049. </a>
  6050. </em>
  6051. </td>
  6052. <td>
  6053. </td>
  6054. </tr>
  6055. <tr>
  6056. <td>
  6057. <code>byName</code></br>
  6058. <em>
  6059. <a href="#external-secrets.io/v1.ByName">
  6060. ByName
  6061. </a>
  6062. </em>
  6063. </td>
  6064. <td>
  6065. </td>
  6066. </tr>
  6067. </tbody>
  6068. </table>
  6069. <h3 id="external-secrets.io/v1.FindName">FindName
  6070. </h3>
  6071. <p>
  6072. (<em>Appears on:</em>
  6073. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  6074. </p>
  6075. <p>
  6076. </p>
  6077. <table>
  6078. <thead>
  6079. <tr>
  6080. <th>Field</th>
  6081. <th>Description</th>
  6082. </tr>
  6083. </thead>
  6084. <tbody>
  6085. <tr>
  6086. <td>
  6087. <code>regexp</code></br>
  6088. <em>
  6089. string
  6090. </em>
  6091. </td>
  6092. <td>
  6093. <em>(Optional)</em>
  6094. <p>Finds secrets base</p>
  6095. </td>
  6096. </tr>
  6097. </tbody>
  6098. </table>
  6099. <h3 id="external-secrets.io/v1.FortanixProvider">FortanixProvider
  6100. </h3>
  6101. <p>
  6102. (<em>Appears on:</em>
  6103. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6104. </p>
  6105. <p>
  6106. </p>
  6107. <table>
  6108. <thead>
  6109. <tr>
  6110. <th>Field</th>
  6111. <th>Description</th>
  6112. </tr>
  6113. </thead>
  6114. <tbody>
  6115. <tr>
  6116. <td>
  6117. <code>apiUrl</code></br>
  6118. <em>
  6119. string
  6120. </em>
  6121. </td>
  6122. <td>
  6123. <p>APIURL is the URL of SDKMS API. Defaults to <code>sdkms.fortanix.com</code>.</p>
  6124. </td>
  6125. </tr>
  6126. <tr>
  6127. <td>
  6128. <code>apiKey</code></br>
  6129. <em>
  6130. <a href="#external-secrets.io/v1.FortanixProviderSecretRef">
  6131. FortanixProviderSecretRef
  6132. </a>
  6133. </em>
  6134. </td>
  6135. <td>
  6136. <p>APIKey is the API token to access SDKMS Applications.</p>
  6137. </td>
  6138. </tr>
  6139. </tbody>
  6140. </table>
  6141. <h3 id="external-secrets.io/v1.FortanixProviderSecretRef">FortanixProviderSecretRef
  6142. </h3>
  6143. <p>
  6144. (<em>Appears on:</em>
  6145. <a href="#external-secrets.io/v1.FortanixProvider">FortanixProvider</a>)
  6146. </p>
  6147. <p>
  6148. </p>
  6149. <table>
  6150. <thead>
  6151. <tr>
  6152. <th>Field</th>
  6153. <th>Description</th>
  6154. </tr>
  6155. </thead>
  6156. <tbody>
  6157. <tr>
  6158. <td>
  6159. <code>secretRef</code></br>
  6160. <em>
  6161. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6162. External Secrets meta/v1.SecretKeySelector
  6163. </a>
  6164. </em>
  6165. </td>
  6166. <td>
  6167. <p>SecretRef is a reference to a secret containing the SDKMS API Key.</p>
  6168. </td>
  6169. </tr>
  6170. </tbody>
  6171. </table>
  6172. <h3 id="external-secrets.io/v1.GCPSMAuth">GCPSMAuth
  6173. </h3>
  6174. <p>
  6175. (<em>Appears on:</em>
  6176. <a href="#external-secrets.io/v1.GCPSMProvider">GCPSMProvider</a>)
  6177. </p>
  6178. <p>
  6179. </p>
  6180. <table>
  6181. <thead>
  6182. <tr>
  6183. <th>Field</th>
  6184. <th>Description</th>
  6185. </tr>
  6186. </thead>
  6187. <tbody>
  6188. <tr>
  6189. <td>
  6190. <code>secretRef</code></br>
  6191. <em>
  6192. <a href="#external-secrets.io/v1.GCPSMAuthSecretRef">
  6193. GCPSMAuthSecretRef
  6194. </a>
  6195. </em>
  6196. </td>
  6197. <td>
  6198. <em>(Optional)</em>
  6199. </td>
  6200. </tr>
  6201. <tr>
  6202. <td>
  6203. <code>workloadIdentity</code></br>
  6204. <em>
  6205. <a href="#external-secrets.io/v1.GCPWorkloadIdentity">
  6206. GCPWorkloadIdentity
  6207. </a>
  6208. </em>
  6209. </td>
  6210. <td>
  6211. <em>(Optional)</em>
  6212. </td>
  6213. </tr>
  6214. <tr>
  6215. <td>
  6216. <code>workloadIdentityFederation</code></br>
  6217. <em>
  6218. <a href="#external-secrets.io/v1.GCPWorkloadIdentityFederation">
  6219. GCPWorkloadIdentityFederation
  6220. </a>
  6221. </em>
  6222. </td>
  6223. <td>
  6224. <em>(Optional)</em>
  6225. </td>
  6226. </tr>
  6227. </tbody>
  6228. </table>
  6229. <h3 id="external-secrets.io/v1.GCPSMAuthSecretRef">GCPSMAuthSecretRef
  6230. </h3>
  6231. <p>
  6232. (<em>Appears on:</em>
  6233. <a href="#external-secrets.io/v1.GCPSMAuth">GCPSMAuth</a>)
  6234. </p>
  6235. <p>
  6236. </p>
  6237. <table>
  6238. <thead>
  6239. <tr>
  6240. <th>Field</th>
  6241. <th>Description</th>
  6242. </tr>
  6243. </thead>
  6244. <tbody>
  6245. <tr>
  6246. <td>
  6247. <code>secretAccessKeySecretRef</code></br>
  6248. <em>
  6249. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6250. External Secrets meta/v1.SecretKeySelector
  6251. </a>
  6252. </em>
  6253. </td>
  6254. <td>
  6255. <em>(Optional)</em>
  6256. <p>The SecretAccessKey is used for authentication</p>
  6257. </td>
  6258. </tr>
  6259. </tbody>
  6260. </table>
  6261. <h3 id="external-secrets.io/v1.GCPSMProvider">GCPSMProvider
  6262. </h3>
  6263. <p>
  6264. (<em>Appears on:</em>
  6265. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6266. </p>
  6267. <p>
  6268. <p>GCPSMProvider Configures a store to sync secrets using the GCP Secret Manager provider.</p>
  6269. </p>
  6270. <table>
  6271. <thead>
  6272. <tr>
  6273. <th>Field</th>
  6274. <th>Description</th>
  6275. </tr>
  6276. </thead>
  6277. <tbody>
  6278. <tr>
  6279. <td>
  6280. <code>auth</code></br>
  6281. <em>
  6282. <a href="#external-secrets.io/v1.GCPSMAuth">
  6283. GCPSMAuth
  6284. </a>
  6285. </em>
  6286. </td>
  6287. <td>
  6288. <em>(Optional)</em>
  6289. <p>Auth defines the information necessary to authenticate against GCP</p>
  6290. </td>
  6291. </tr>
  6292. <tr>
  6293. <td>
  6294. <code>projectID</code></br>
  6295. <em>
  6296. string
  6297. </em>
  6298. </td>
  6299. <td>
  6300. <p>ProjectID project where secret is located</p>
  6301. </td>
  6302. </tr>
  6303. <tr>
  6304. <td>
  6305. <code>location</code></br>
  6306. <em>
  6307. string
  6308. </em>
  6309. </td>
  6310. <td>
  6311. <p>Location optionally defines a location for a secret</p>
  6312. </td>
  6313. </tr>
  6314. </tbody>
  6315. </table>
  6316. <h3 id="external-secrets.io/v1.GCPWorkloadIdentity">GCPWorkloadIdentity
  6317. </h3>
  6318. <p>
  6319. (<em>Appears on:</em>
  6320. <a href="#external-secrets.io/v1.GCPSMAuth">GCPSMAuth</a>)
  6321. </p>
  6322. <p>
  6323. </p>
  6324. <table>
  6325. <thead>
  6326. <tr>
  6327. <th>Field</th>
  6328. <th>Description</th>
  6329. </tr>
  6330. </thead>
  6331. <tbody>
  6332. <tr>
  6333. <td>
  6334. <code>serviceAccountRef</code></br>
  6335. <em>
  6336. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  6337. External Secrets meta/v1.ServiceAccountSelector
  6338. </a>
  6339. </em>
  6340. </td>
  6341. <td>
  6342. </td>
  6343. </tr>
  6344. <tr>
  6345. <td>
  6346. <code>clusterLocation</code></br>
  6347. <em>
  6348. string
  6349. </em>
  6350. </td>
  6351. <td>
  6352. <em>(Optional)</em>
  6353. <p>ClusterLocation is the location of the cluster
  6354. If not specified, it fetches information from the metadata server</p>
  6355. </td>
  6356. </tr>
  6357. <tr>
  6358. <td>
  6359. <code>clusterName</code></br>
  6360. <em>
  6361. string
  6362. </em>
  6363. </td>
  6364. <td>
  6365. <em>(Optional)</em>
  6366. <p>ClusterName is the name of the cluster
  6367. If not specified, it fetches information from the metadata server</p>
  6368. </td>
  6369. </tr>
  6370. <tr>
  6371. <td>
  6372. <code>clusterProjectID</code></br>
  6373. <em>
  6374. string
  6375. </em>
  6376. </td>
  6377. <td>
  6378. <em>(Optional)</em>
  6379. <p>ClusterProjectID is the project ID of the cluster
  6380. If not specified, it fetches information from the metadata server</p>
  6381. </td>
  6382. </tr>
  6383. </tbody>
  6384. </table>
  6385. <h3 id="external-secrets.io/v1.GCPWorkloadIdentityFederation">GCPWorkloadIdentityFederation
  6386. </h3>
  6387. <p>
  6388. (<em>Appears on:</em>
  6389. <a href="#external-secrets.io/v1.GCPSMAuth">GCPSMAuth</a>)
  6390. </p>
  6391. <p>
  6392. <p>GCPWorkloadIdentityFederation holds the configurations required for generating federated access tokens.</p>
  6393. </p>
  6394. <table>
  6395. <thead>
  6396. <tr>
  6397. <th>Field</th>
  6398. <th>Description</th>
  6399. </tr>
  6400. </thead>
  6401. <tbody>
  6402. <tr>
  6403. <td>
  6404. <code>credConfig</code></br>
  6405. <em>
  6406. <a href="#external-secrets.io/v1.ConfigMapReference">
  6407. ConfigMapReference
  6408. </a>
  6409. </em>
  6410. </td>
  6411. <td>
  6412. <p>credConfig holds the configmap reference containing the GCP external account credential configuration in JSON format and the key name containing the json data.
  6413. For using Kubernetes cluster as the identity provider, use serviceAccountRef instead. Operators mounted serviceaccount token cannot be used as the token source, instead
  6414. serviceAccountRef must be used by providing operators service account details.</p>
  6415. </td>
  6416. </tr>
  6417. <tr>
  6418. <td>
  6419. <code>serviceAccountRef</code></br>
  6420. <em>
  6421. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  6422. External Secrets meta/v1.ServiceAccountSelector
  6423. </a>
  6424. </em>
  6425. </td>
  6426. <td>
  6427. <p>serviceAccountRef is the reference to the kubernetes ServiceAccount to be used for obtaining the tokens,
  6428. when Kubernetes is configured as provider in workload identity pool.</p>
  6429. </td>
  6430. </tr>
  6431. <tr>
  6432. <td>
  6433. <code>awsSecurityCredentials</code></br>
  6434. <em>
  6435. <a href="#external-secrets.io/v1.AwsCredentialsConfig">
  6436. AwsCredentialsConfig
  6437. </a>
  6438. </em>
  6439. </td>
  6440. <td>
  6441. <p>awsSecurityCredentials is for configuring AWS region and credentials to use for obtaining the access token,
  6442. when using the AWS metadata server is not an option.</p>
  6443. </td>
  6444. </tr>
  6445. <tr>
  6446. <td>
  6447. <code>audience</code></br>
  6448. <em>
  6449. string
  6450. </em>
  6451. </td>
  6452. <td>
  6453. <p>audience is the Secure Token Service (STS) audience which contains the resource name for the workload identity pool and the provider identifier in that pool.
  6454. If specified, Audience found in the external account credential config will be overridden with the configured value.
  6455. audience must be provided when serviceAccountRef or awsSecurityCredentials is configured.</p>
  6456. </td>
  6457. </tr>
  6458. <tr>
  6459. <td>
  6460. <code>externalTokenEndpoint</code></br>
  6461. <em>
  6462. string
  6463. </em>
  6464. </td>
  6465. <td>
  6466. <p>externalTokenEndpoint is the endpoint explicitly set up to provide tokens, which will be matched against the
  6467. credential_source.url in the provided credConfig. This field is merely to double-check the external token source
  6468. URL is having the expected value.</p>
  6469. </td>
  6470. </tr>
  6471. </tbody>
  6472. </table>
  6473. <h3 id="external-secrets.io/v1.GcpIamAuthCredentials">GcpIamAuthCredentials
  6474. </h3>
  6475. <p>
  6476. (<em>Appears on:</em>
  6477. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  6478. </p>
  6479. <p>
  6480. </p>
  6481. <table>
  6482. <thead>
  6483. <tr>
  6484. <th>Field</th>
  6485. <th>Description</th>
  6486. </tr>
  6487. </thead>
  6488. <tbody>
  6489. <tr>
  6490. <td>
  6491. <code>identityId</code></br>
  6492. <em>
  6493. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6494. External Secrets meta/v1.SecretKeySelector
  6495. </a>
  6496. </em>
  6497. </td>
  6498. <td>
  6499. </td>
  6500. </tr>
  6501. <tr>
  6502. <td>
  6503. <code>serviceAccountKeyFilePath</code></br>
  6504. <em>
  6505. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6506. External Secrets meta/v1.SecretKeySelector
  6507. </a>
  6508. </em>
  6509. </td>
  6510. <td>
  6511. </td>
  6512. </tr>
  6513. </tbody>
  6514. </table>
  6515. <h3 id="external-secrets.io/v1.GcpIdTokenAuthCredentials">GcpIdTokenAuthCredentials
  6516. </h3>
  6517. <p>
  6518. (<em>Appears on:</em>
  6519. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  6520. </p>
  6521. <p>
  6522. </p>
  6523. <table>
  6524. <thead>
  6525. <tr>
  6526. <th>Field</th>
  6527. <th>Description</th>
  6528. </tr>
  6529. </thead>
  6530. <tbody>
  6531. <tr>
  6532. <td>
  6533. <code>identityId</code></br>
  6534. <em>
  6535. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6536. External Secrets meta/v1.SecretKeySelector
  6537. </a>
  6538. </em>
  6539. </td>
  6540. <td>
  6541. </td>
  6542. </tr>
  6543. </tbody>
  6544. </table>
  6545. <h3 id="external-secrets.io/v1.GeneratorRef">GeneratorRef
  6546. </h3>
  6547. <p>
  6548. (<em>Appears on:</em>
  6549. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  6550. <a href="#external-secrets.io/v1.StoreSourceRef">StoreSourceRef</a>)
  6551. </p>
  6552. <p>
  6553. <p>GeneratorRef points to a generator custom resource.</p>
  6554. </p>
  6555. <table>
  6556. <thead>
  6557. <tr>
  6558. <th>Field</th>
  6559. <th>Description</th>
  6560. </tr>
  6561. </thead>
  6562. <tbody>
  6563. <tr>
  6564. <td>
  6565. <code>apiVersion</code></br>
  6566. <em>
  6567. string
  6568. </em>
  6569. </td>
  6570. <td>
  6571. <p>Specify the apiVersion of the generator resource</p>
  6572. </td>
  6573. </tr>
  6574. <tr>
  6575. <td>
  6576. <code>kind</code></br>
  6577. <em>
  6578. string
  6579. </em>
  6580. </td>
  6581. <td>
  6582. <p>Specify the Kind of the generator resource</p>
  6583. </td>
  6584. </tr>
  6585. <tr>
  6586. <td>
  6587. <code>name</code></br>
  6588. <em>
  6589. string
  6590. </em>
  6591. </td>
  6592. <td>
  6593. <p>Specify the name of the generator resource</p>
  6594. </td>
  6595. </tr>
  6596. </tbody>
  6597. </table>
  6598. <h3 id="external-secrets.io/v1.GenericStore">GenericStore
  6599. </h3>
  6600. <p>
  6601. <p>GenericStore is a common interface for interacting with ClusterSecretStore
  6602. or a namespaced SecretStore.</p>
  6603. </p>
  6604. <h3 id="external-secrets.io/v1.GenericStoreValidator">GenericStoreValidator
  6605. </h3>
  6606. <p>
  6607. </p>
  6608. <h3 id="external-secrets.io/v1.GithubAppAuth">GithubAppAuth
  6609. </h3>
  6610. <p>
  6611. (<em>Appears on:</em>
  6612. <a href="#external-secrets.io/v1.GithubProvider">GithubProvider</a>)
  6613. </p>
  6614. <p>
  6615. </p>
  6616. <table>
  6617. <thead>
  6618. <tr>
  6619. <th>Field</th>
  6620. <th>Description</th>
  6621. </tr>
  6622. </thead>
  6623. <tbody>
  6624. <tr>
  6625. <td>
  6626. <code>privateKey</code></br>
  6627. <em>
  6628. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6629. External Secrets meta/v1.SecretKeySelector
  6630. </a>
  6631. </em>
  6632. </td>
  6633. <td>
  6634. </td>
  6635. </tr>
  6636. </tbody>
  6637. </table>
  6638. <h3 id="external-secrets.io/v1.GithubProvider">GithubProvider
  6639. </h3>
  6640. <p>
  6641. (<em>Appears on:</em>
  6642. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6643. </p>
  6644. <p>
  6645. <p>Configures a store to push secrets to Github Actions.</p>
  6646. </p>
  6647. <table>
  6648. <thead>
  6649. <tr>
  6650. <th>Field</th>
  6651. <th>Description</th>
  6652. </tr>
  6653. </thead>
  6654. <tbody>
  6655. <tr>
  6656. <td>
  6657. <code>url</code></br>
  6658. <em>
  6659. string
  6660. </em>
  6661. </td>
  6662. <td>
  6663. <p>URL configures the Github instance URL. Defaults to <a href="https://github.com/">https://github.com/</a>.</p>
  6664. </td>
  6665. </tr>
  6666. <tr>
  6667. <td>
  6668. <code>uploadURL</code></br>
  6669. <em>
  6670. string
  6671. </em>
  6672. </td>
  6673. <td>
  6674. <em>(Optional)</em>
  6675. <p>Upload URL for enterprise instances. Default to URL.</p>
  6676. </td>
  6677. </tr>
  6678. <tr>
  6679. <td>
  6680. <code>auth</code></br>
  6681. <em>
  6682. <a href="#external-secrets.io/v1.GithubAppAuth">
  6683. GithubAppAuth
  6684. </a>
  6685. </em>
  6686. </td>
  6687. <td>
  6688. <p>auth configures how secret-manager authenticates with a Github instance.</p>
  6689. </td>
  6690. </tr>
  6691. <tr>
  6692. <td>
  6693. <code>appID</code></br>
  6694. <em>
  6695. int64
  6696. </em>
  6697. </td>
  6698. <td>
  6699. <p>appID specifies the Github APP that will be used to authenticate the client</p>
  6700. </td>
  6701. </tr>
  6702. <tr>
  6703. <td>
  6704. <code>installationID</code></br>
  6705. <em>
  6706. int64
  6707. </em>
  6708. </td>
  6709. <td>
  6710. <p>installationID specifies the Github APP installation that will be used to authenticate the client</p>
  6711. </td>
  6712. </tr>
  6713. <tr>
  6714. <td>
  6715. <code>organization</code></br>
  6716. <em>
  6717. string
  6718. </em>
  6719. </td>
  6720. <td>
  6721. <p>organization will be used to fetch secrets from the Github organization</p>
  6722. </td>
  6723. </tr>
  6724. <tr>
  6725. <td>
  6726. <code>repository</code></br>
  6727. <em>
  6728. string
  6729. </em>
  6730. </td>
  6731. <td>
  6732. <em>(Optional)</em>
  6733. <p>repository will be used to fetch secrets from the Github repository within an organization</p>
  6734. </td>
  6735. </tr>
  6736. <tr>
  6737. <td>
  6738. <code>environment</code></br>
  6739. <em>
  6740. string
  6741. </em>
  6742. </td>
  6743. <td>
  6744. <em>(Optional)</em>
  6745. <p>environment will be used to fetch secrets from a particular environment within a github repository</p>
  6746. </td>
  6747. </tr>
  6748. </tbody>
  6749. </table>
  6750. <h3 id="external-secrets.io/v1.GitlabAuth">GitlabAuth
  6751. </h3>
  6752. <p>
  6753. (<em>Appears on:</em>
  6754. <a href="#external-secrets.io/v1.GitlabProvider">GitlabProvider</a>)
  6755. </p>
  6756. <p>
  6757. </p>
  6758. <table>
  6759. <thead>
  6760. <tr>
  6761. <th>Field</th>
  6762. <th>Description</th>
  6763. </tr>
  6764. </thead>
  6765. <tbody>
  6766. <tr>
  6767. <td>
  6768. <code>SecretRef</code></br>
  6769. <em>
  6770. <a href="#external-secrets.io/v1.GitlabSecretRef">
  6771. GitlabSecretRef
  6772. </a>
  6773. </em>
  6774. </td>
  6775. <td>
  6776. </td>
  6777. </tr>
  6778. </tbody>
  6779. </table>
  6780. <h3 id="external-secrets.io/v1.GitlabProvider">GitlabProvider
  6781. </h3>
  6782. <p>
  6783. (<em>Appears on:</em>
  6784. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6785. </p>
  6786. <p>
  6787. <p>Configures a store to sync secrets with a GitLab instance.</p>
  6788. </p>
  6789. <table>
  6790. <thead>
  6791. <tr>
  6792. <th>Field</th>
  6793. <th>Description</th>
  6794. </tr>
  6795. </thead>
  6796. <tbody>
  6797. <tr>
  6798. <td>
  6799. <code>url</code></br>
  6800. <em>
  6801. string
  6802. </em>
  6803. </td>
  6804. <td>
  6805. <p>URL configures the GitLab instance URL. Defaults to <a href="https://gitlab.com/">https://gitlab.com/</a>.</p>
  6806. </td>
  6807. </tr>
  6808. <tr>
  6809. <td>
  6810. <code>auth</code></br>
  6811. <em>
  6812. <a href="#external-secrets.io/v1.GitlabAuth">
  6813. GitlabAuth
  6814. </a>
  6815. </em>
  6816. </td>
  6817. <td>
  6818. <p>Auth configures how secret-manager authenticates with a GitLab instance.</p>
  6819. </td>
  6820. </tr>
  6821. <tr>
  6822. <td>
  6823. <code>projectID</code></br>
  6824. <em>
  6825. string
  6826. </em>
  6827. </td>
  6828. <td>
  6829. <p>ProjectID specifies a project where secrets are located.</p>
  6830. </td>
  6831. </tr>
  6832. <tr>
  6833. <td>
  6834. <code>inheritFromGroups</code></br>
  6835. <em>
  6836. bool
  6837. </em>
  6838. </td>
  6839. <td>
  6840. <p>InheritFromGroups specifies whether parent groups should be discovered and checked for secrets.</p>
  6841. </td>
  6842. </tr>
  6843. <tr>
  6844. <td>
  6845. <code>groupIDs</code></br>
  6846. <em>
  6847. []string
  6848. </em>
  6849. </td>
  6850. <td>
  6851. <p>GroupIDs specify, which gitlab groups to pull secrets from. Group secrets are read from left to right followed by the project variables.</p>
  6852. </td>
  6853. </tr>
  6854. <tr>
  6855. <td>
  6856. <code>environment</code></br>
  6857. <em>
  6858. string
  6859. </em>
  6860. </td>
  6861. <td>
  6862. <p>Environment environment_scope of gitlab CI/CD variables (Please see <a href="https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment">https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment</a> on how to create environments)</p>
  6863. </td>
  6864. </tr>
  6865. <tr>
  6866. <td>
  6867. <code>caBundle</code></br>
  6868. <em>
  6869. []byte
  6870. </em>
  6871. </td>
  6872. <td>
  6873. <em>(Optional)</em>
  6874. <p>Base64 encoded certificate for the GitLab server sdk. The sdk MUST run with HTTPS to make sure no MITM attack
  6875. can be performed.</p>
  6876. </td>
  6877. </tr>
  6878. <tr>
  6879. <td>
  6880. <code>caProvider</code></br>
  6881. <em>
  6882. <a href="#external-secrets.io/v1.CAProvider">
  6883. CAProvider
  6884. </a>
  6885. </em>
  6886. </td>
  6887. <td>
  6888. <em>(Optional)</em>
  6889. <p>see: <a href="https://external-secrets.io/latest/spec/#external-secrets.io/v1alpha1.CAProvider">https://external-secrets.io/latest/spec/#external-secrets.io/v1alpha1.CAProvider</a></p>
  6890. </td>
  6891. </tr>
  6892. </tbody>
  6893. </table>
  6894. <h3 id="external-secrets.io/v1.GitlabSecretRef">GitlabSecretRef
  6895. </h3>
  6896. <p>
  6897. (<em>Appears on:</em>
  6898. <a href="#external-secrets.io/v1.GitlabAuth">GitlabAuth</a>)
  6899. </p>
  6900. <p>
  6901. </p>
  6902. <table>
  6903. <thead>
  6904. <tr>
  6905. <th>Field</th>
  6906. <th>Description</th>
  6907. </tr>
  6908. </thead>
  6909. <tbody>
  6910. <tr>
  6911. <td>
  6912. <code>accessToken</code></br>
  6913. <em>
  6914. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6915. External Secrets meta/v1.SecretKeySelector
  6916. </a>
  6917. </em>
  6918. </td>
  6919. <td>
  6920. <p>AccessToken is used for authentication.</p>
  6921. </td>
  6922. </tr>
  6923. </tbody>
  6924. </table>
  6925. <h3 id="external-secrets.io/v1.IBMAuth">IBMAuth
  6926. </h3>
  6927. <p>
  6928. (<em>Appears on:</em>
  6929. <a href="#external-secrets.io/v1.IBMProvider">IBMProvider</a>)
  6930. </p>
  6931. <p>
  6932. </p>
  6933. <table>
  6934. <thead>
  6935. <tr>
  6936. <th>Field</th>
  6937. <th>Description</th>
  6938. </tr>
  6939. </thead>
  6940. <tbody>
  6941. <tr>
  6942. <td>
  6943. <code>secretRef</code></br>
  6944. <em>
  6945. <a href="#external-secrets.io/v1.IBMAuthSecretRef">
  6946. IBMAuthSecretRef
  6947. </a>
  6948. </em>
  6949. </td>
  6950. <td>
  6951. </td>
  6952. </tr>
  6953. <tr>
  6954. <td>
  6955. <code>containerAuth</code></br>
  6956. <em>
  6957. <a href="#external-secrets.io/v1.IBMAuthContainerAuth">
  6958. IBMAuthContainerAuth
  6959. </a>
  6960. </em>
  6961. </td>
  6962. <td>
  6963. </td>
  6964. </tr>
  6965. </tbody>
  6966. </table>
  6967. <h3 id="external-secrets.io/v1.IBMAuthContainerAuth">IBMAuthContainerAuth
  6968. </h3>
  6969. <p>
  6970. (<em>Appears on:</em>
  6971. <a href="#external-secrets.io/v1.IBMAuth">IBMAuth</a>)
  6972. </p>
  6973. <p>
  6974. <p>IBM Container-based auth with IAM Trusted Profile.</p>
  6975. </p>
  6976. <table>
  6977. <thead>
  6978. <tr>
  6979. <th>Field</th>
  6980. <th>Description</th>
  6981. </tr>
  6982. </thead>
  6983. <tbody>
  6984. <tr>
  6985. <td>
  6986. <code>profile</code></br>
  6987. <em>
  6988. string
  6989. </em>
  6990. </td>
  6991. <td>
  6992. <p>the IBM Trusted Profile</p>
  6993. </td>
  6994. </tr>
  6995. <tr>
  6996. <td>
  6997. <code>tokenLocation</code></br>
  6998. <em>
  6999. string
  7000. </em>
  7001. </td>
  7002. <td>
  7003. <p>Location the token is mounted on the pod</p>
  7004. </td>
  7005. </tr>
  7006. <tr>
  7007. <td>
  7008. <code>iamEndpoint</code></br>
  7009. <em>
  7010. string
  7011. </em>
  7012. </td>
  7013. <td>
  7014. </td>
  7015. </tr>
  7016. </tbody>
  7017. </table>
  7018. <h3 id="external-secrets.io/v1.IBMAuthSecretRef">IBMAuthSecretRef
  7019. </h3>
  7020. <p>
  7021. (<em>Appears on:</em>
  7022. <a href="#external-secrets.io/v1.IBMAuth">IBMAuth</a>)
  7023. </p>
  7024. <p>
  7025. </p>
  7026. <table>
  7027. <thead>
  7028. <tr>
  7029. <th>Field</th>
  7030. <th>Description</th>
  7031. </tr>
  7032. </thead>
  7033. <tbody>
  7034. <tr>
  7035. <td>
  7036. <code>secretApiKeySecretRef</code></br>
  7037. <em>
  7038. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7039. External Secrets meta/v1.SecretKeySelector
  7040. </a>
  7041. </em>
  7042. </td>
  7043. <td>
  7044. <p>The SecretAccessKey is used for authentication</p>
  7045. </td>
  7046. </tr>
  7047. </tbody>
  7048. </table>
  7049. <h3 id="external-secrets.io/v1.IBMProvider">IBMProvider
  7050. </h3>
  7051. <p>
  7052. (<em>Appears on:</em>
  7053. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7054. </p>
  7055. <p>
  7056. <p>Configures an store to sync secrets using a IBM Cloud Secrets Manager
  7057. backend.</p>
  7058. </p>
  7059. <table>
  7060. <thead>
  7061. <tr>
  7062. <th>Field</th>
  7063. <th>Description</th>
  7064. </tr>
  7065. </thead>
  7066. <tbody>
  7067. <tr>
  7068. <td>
  7069. <code>auth</code></br>
  7070. <em>
  7071. <a href="#external-secrets.io/v1.IBMAuth">
  7072. IBMAuth
  7073. </a>
  7074. </em>
  7075. </td>
  7076. <td>
  7077. <p>Auth configures how secret-manager authenticates with the IBM secrets manager.</p>
  7078. </td>
  7079. </tr>
  7080. <tr>
  7081. <td>
  7082. <code>serviceUrl</code></br>
  7083. <em>
  7084. string
  7085. </em>
  7086. </td>
  7087. <td>
  7088. <p>ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance</p>
  7089. </td>
  7090. </tr>
  7091. </tbody>
  7092. </table>
  7093. <h3 id="external-secrets.io/v1.InfisicalAuth">InfisicalAuth
  7094. </h3>
  7095. <p>
  7096. (<em>Appears on:</em>
  7097. <a href="#external-secrets.io/v1.InfisicalProvider">InfisicalProvider</a>)
  7098. </p>
  7099. <p>
  7100. </p>
  7101. <table>
  7102. <thead>
  7103. <tr>
  7104. <th>Field</th>
  7105. <th>Description</th>
  7106. </tr>
  7107. </thead>
  7108. <tbody>
  7109. <tr>
  7110. <td>
  7111. <code>universalAuthCredentials</code></br>
  7112. <em>
  7113. <a href="#external-secrets.io/v1.UniversalAuthCredentials">
  7114. UniversalAuthCredentials
  7115. </a>
  7116. </em>
  7117. </td>
  7118. <td>
  7119. <em>(Optional)</em>
  7120. </td>
  7121. </tr>
  7122. <tr>
  7123. <td>
  7124. <code>azureAuthCredentials</code></br>
  7125. <em>
  7126. <a href="#external-secrets.io/v1.AzureAuthCredentials">
  7127. AzureAuthCredentials
  7128. </a>
  7129. </em>
  7130. </td>
  7131. <td>
  7132. <em>(Optional)</em>
  7133. </td>
  7134. </tr>
  7135. <tr>
  7136. <td>
  7137. <code>gcpIdTokenAuthCredentials</code></br>
  7138. <em>
  7139. <a href="#external-secrets.io/v1.GcpIdTokenAuthCredentials">
  7140. GcpIdTokenAuthCredentials
  7141. </a>
  7142. </em>
  7143. </td>
  7144. <td>
  7145. <em>(Optional)</em>
  7146. </td>
  7147. </tr>
  7148. <tr>
  7149. <td>
  7150. <code>gcpIamAuthCredentials</code></br>
  7151. <em>
  7152. <a href="#external-secrets.io/v1.GcpIamAuthCredentials">
  7153. GcpIamAuthCredentials
  7154. </a>
  7155. </em>
  7156. </td>
  7157. <td>
  7158. <em>(Optional)</em>
  7159. </td>
  7160. </tr>
  7161. <tr>
  7162. <td>
  7163. <code>jwtAuthCredentials</code></br>
  7164. <em>
  7165. <a href="#external-secrets.io/v1.JwtAuthCredentials">
  7166. JwtAuthCredentials
  7167. </a>
  7168. </em>
  7169. </td>
  7170. <td>
  7171. <em>(Optional)</em>
  7172. </td>
  7173. </tr>
  7174. <tr>
  7175. <td>
  7176. <code>ldapAuthCredentials</code></br>
  7177. <em>
  7178. <a href="#external-secrets.io/v1.LdapAuthCredentials">
  7179. LdapAuthCredentials
  7180. </a>
  7181. </em>
  7182. </td>
  7183. <td>
  7184. <em>(Optional)</em>
  7185. </td>
  7186. </tr>
  7187. <tr>
  7188. <td>
  7189. <code>ociAuthCredentials</code></br>
  7190. <em>
  7191. <a href="#external-secrets.io/v1.OciAuthCredentials">
  7192. OciAuthCredentials
  7193. </a>
  7194. </em>
  7195. </td>
  7196. <td>
  7197. <em>(Optional)</em>
  7198. </td>
  7199. </tr>
  7200. <tr>
  7201. <td>
  7202. <code>kubernetesAuthCredentials</code></br>
  7203. <em>
  7204. <a href="#external-secrets.io/v1.KubernetesAuthCredentials">
  7205. KubernetesAuthCredentials
  7206. </a>
  7207. </em>
  7208. </td>
  7209. <td>
  7210. <em>(Optional)</em>
  7211. </td>
  7212. </tr>
  7213. <tr>
  7214. <td>
  7215. <code>awsAuthCredentials</code></br>
  7216. <em>
  7217. <a href="#external-secrets.io/v1.AwsAuthCredentials">
  7218. AwsAuthCredentials
  7219. </a>
  7220. </em>
  7221. </td>
  7222. <td>
  7223. <em>(Optional)</em>
  7224. </td>
  7225. </tr>
  7226. <tr>
  7227. <td>
  7228. <code>tokenAuthCredentials</code></br>
  7229. <em>
  7230. <a href="#external-secrets.io/v1.TokenAuthCredentials">
  7231. TokenAuthCredentials
  7232. </a>
  7233. </em>
  7234. </td>
  7235. <td>
  7236. <em>(Optional)</em>
  7237. </td>
  7238. </tr>
  7239. </tbody>
  7240. </table>
  7241. <h3 id="external-secrets.io/v1.InfisicalProvider">InfisicalProvider
  7242. </h3>
  7243. <p>
  7244. (<em>Appears on:</em>
  7245. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7246. </p>
  7247. <p>
  7248. <p>InfisicalProvider configures a store to sync secrets using the Infisical provider.</p>
  7249. </p>
  7250. <table>
  7251. <thead>
  7252. <tr>
  7253. <th>Field</th>
  7254. <th>Description</th>
  7255. </tr>
  7256. </thead>
  7257. <tbody>
  7258. <tr>
  7259. <td>
  7260. <code>auth</code></br>
  7261. <em>
  7262. <a href="#external-secrets.io/v1.InfisicalAuth">
  7263. InfisicalAuth
  7264. </a>
  7265. </em>
  7266. </td>
  7267. <td>
  7268. <p>Auth configures how the Operator authenticates with the Infisical API</p>
  7269. </td>
  7270. </tr>
  7271. <tr>
  7272. <td>
  7273. <code>secretsScope</code></br>
  7274. <em>
  7275. <a href="#external-secrets.io/v1.MachineIdentityScopeInWorkspace">
  7276. MachineIdentityScopeInWorkspace
  7277. </a>
  7278. </em>
  7279. </td>
  7280. <td>
  7281. <p>SecretsScope defines the scope of the secrets within the workspace</p>
  7282. </td>
  7283. </tr>
  7284. <tr>
  7285. <td>
  7286. <code>hostAPI</code></br>
  7287. <em>
  7288. string
  7289. </em>
  7290. </td>
  7291. <td>
  7292. <em>(Optional)</em>
  7293. <p>HostAPI specifies the base URL of the Infisical API. If not provided, it defaults to &ldquo;<a href="https://app.infisical.com/api&quot;">https://app.infisical.com/api&rdquo;</a>.</p>
  7294. </td>
  7295. </tr>
  7296. </tbody>
  7297. </table>
  7298. <h3 id="external-secrets.io/v1.IntegrationInfo">IntegrationInfo
  7299. </h3>
  7300. <p>
  7301. (<em>Appears on:</em>
  7302. <a href="#external-secrets.io/v1.OnePasswordSDKProvider">OnePasswordSDKProvider</a>)
  7303. </p>
  7304. <p>
  7305. <p>IntegrationInfo specifies the name and version of the integration built using the 1Password Go SDK.</p>
  7306. </p>
  7307. <table>
  7308. <thead>
  7309. <tr>
  7310. <th>Field</th>
  7311. <th>Description</th>
  7312. </tr>
  7313. </thead>
  7314. <tbody>
  7315. <tr>
  7316. <td>
  7317. <code>name</code></br>
  7318. <em>
  7319. string
  7320. </em>
  7321. </td>
  7322. <td>
  7323. <p>Name defaults to &ldquo;1Password SDK&rdquo;.</p>
  7324. </td>
  7325. </tr>
  7326. <tr>
  7327. <td>
  7328. <code>version</code></br>
  7329. <em>
  7330. string
  7331. </em>
  7332. </td>
  7333. <td>
  7334. <p>Version defaults to &ldquo;v1.0.0&rdquo;.</p>
  7335. </td>
  7336. </tr>
  7337. </tbody>
  7338. </table>
  7339. <h3 id="external-secrets.io/v1.JwtAuthCredentials">JwtAuthCredentials
  7340. </h3>
  7341. <p>
  7342. (<em>Appears on:</em>
  7343. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  7344. </p>
  7345. <p>
  7346. </p>
  7347. <table>
  7348. <thead>
  7349. <tr>
  7350. <th>Field</th>
  7351. <th>Description</th>
  7352. </tr>
  7353. </thead>
  7354. <tbody>
  7355. <tr>
  7356. <td>
  7357. <code>identityId</code></br>
  7358. <em>
  7359. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7360. External Secrets meta/v1.SecretKeySelector
  7361. </a>
  7362. </em>
  7363. </td>
  7364. <td>
  7365. </td>
  7366. </tr>
  7367. <tr>
  7368. <td>
  7369. <code>jwt</code></br>
  7370. <em>
  7371. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7372. External Secrets meta/v1.SecretKeySelector
  7373. </a>
  7374. </em>
  7375. </td>
  7376. <td>
  7377. </td>
  7378. </tr>
  7379. </tbody>
  7380. </table>
  7381. <h3 id="external-secrets.io/v1.KeeperSecurityProvider">KeeperSecurityProvider
  7382. </h3>
  7383. <p>
  7384. (<em>Appears on:</em>
  7385. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7386. </p>
  7387. <p>
  7388. <p>KeeperSecurityProvider Configures a store to sync secrets using Keeper Security.</p>
  7389. </p>
  7390. <table>
  7391. <thead>
  7392. <tr>
  7393. <th>Field</th>
  7394. <th>Description</th>
  7395. </tr>
  7396. </thead>
  7397. <tbody>
  7398. <tr>
  7399. <td>
  7400. <code>authRef</code></br>
  7401. <em>
  7402. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7403. External Secrets meta/v1.SecretKeySelector
  7404. </a>
  7405. </em>
  7406. </td>
  7407. <td>
  7408. </td>
  7409. </tr>
  7410. <tr>
  7411. <td>
  7412. <code>folderID</code></br>
  7413. <em>
  7414. string
  7415. </em>
  7416. </td>
  7417. <td>
  7418. </td>
  7419. </tr>
  7420. </tbody>
  7421. </table>
  7422. <h3 id="external-secrets.io/v1.KubernetesAuth">KubernetesAuth
  7423. </h3>
  7424. <p>
  7425. (<em>Appears on:</em>
  7426. <a href="#external-secrets.io/v1.KubernetesProvider">KubernetesProvider</a>)
  7427. </p>
  7428. <p>
  7429. </p>
  7430. <table>
  7431. <thead>
  7432. <tr>
  7433. <th>Field</th>
  7434. <th>Description</th>
  7435. </tr>
  7436. </thead>
  7437. <tbody>
  7438. <tr>
  7439. <td>
  7440. <code>cert</code></br>
  7441. <em>
  7442. <a href="#external-secrets.io/v1.CertAuth">
  7443. CertAuth
  7444. </a>
  7445. </em>
  7446. </td>
  7447. <td>
  7448. <em>(Optional)</em>
  7449. <p>has both clientCert and clientKey as secretKeySelector</p>
  7450. </td>
  7451. </tr>
  7452. <tr>
  7453. <td>
  7454. <code>token</code></br>
  7455. <em>
  7456. <a href="#external-secrets.io/v1.TokenAuth">
  7457. TokenAuth
  7458. </a>
  7459. </em>
  7460. </td>
  7461. <td>
  7462. <em>(Optional)</em>
  7463. <p>use static token to authenticate with</p>
  7464. </td>
  7465. </tr>
  7466. <tr>
  7467. <td>
  7468. <code>serviceAccount</code></br>
  7469. <em>
  7470. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  7471. External Secrets meta/v1.ServiceAccountSelector
  7472. </a>
  7473. </em>
  7474. </td>
  7475. <td>
  7476. <em>(Optional)</em>
  7477. <p>points to a service account that should be used for authentication</p>
  7478. </td>
  7479. </tr>
  7480. </tbody>
  7481. </table>
  7482. <h3 id="external-secrets.io/v1.KubernetesAuthCredentials">KubernetesAuthCredentials
  7483. </h3>
  7484. <p>
  7485. (<em>Appears on:</em>
  7486. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  7487. </p>
  7488. <p>
  7489. </p>
  7490. <table>
  7491. <thead>
  7492. <tr>
  7493. <th>Field</th>
  7494. <th>Description</th>
  7495. </tr>
  7496. </thead>
  7497. <tbody>
  7498. <tr>
  7499. <td>
  7500. <code>identityId</code></br>
  7501. <em>
  7502. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7503. External Secrets meta/v1.SecretKeySelector
  7504. </a>
  7505. </em>
  7506. </td>
  7507. <td>
  7508. </td>
  7509. </tr>
  7510. <tr>
  7511. <td>
  7512. <code>serviceAccountTokenPath</code></br>
  7513. <em>
  7514. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7515. External Secrets meta/v1.SecretKeySelector
  7516. </a>
  7517. </em>
  7518. </td>
  7519. <td>
  7520. <em>(Optional)</em>
  7521. </td>
  7522. </tr>
  7523. </tbody>
  7524. </table>
  7525. <h3 id="external-secrets.io/v1.KubernetesProvider">KubernetesProvider
  7526. </h3>
  7527. <p>
  7528. (<em>Appears on:</em>
  7529. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7530. </p>
  7531. <p>
  7532. <p>Configures a store to sync secrets with a Kubernetes instance.</p>
  7533. </p>
  7534. <table>
  7535. <thead>
  7536. <tr>
  7537. <th>Field</th>
  7538. <th>Description</th>
  7539. </tr>
  7540. </thead>
  7541. <tbody>
  7542. <tr>
  7543. <td>
  7544. <code>server</code></br>
  7545. <em>
  7546. <a href="#external-secrets.io/v1.KubernetesServer">
  7547. KubernetesServer
  7548. </a>
  7549. </em>
  7550. </td>
  7551. <td>
  7552. <em>(Optional)</em>
  7553. <p>configures the Kubernetes server Address.</p>
  7554. </td>
  7555. </tr>
  7556. <tr>
  7557. <td>
  7558. <code>auth</code></br>
  7559. <em>
  7560. <a href="#external-secrets.io/v1.KubernetesAuth">
  7561. KubernetesAuth
  7562. </a>
  7563. </em>
  7564. </td>
  7565. <td>
  7566. <em>(Optional)</em>
  7567. <p>Auth configures how secret-manager authenticates with a Kubernetes instance.</p>
  7568. </td>
  7569. </tr>
  7570. <tr>
  7571. <td>
  7572. <code>authRef</code></br>
  7573. <em>
  7574. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7575. External Secrets meta/v1.SecretKeySelector
  7576. </a>
  7577. </em>
  7578. </td>
  7579. <td>
  7580. <em>(Optional)</em>
  7581. <p>A reference to a secret that contains the auth information.</p>
  7582. </td>
  7583. </tr>
  7584. <tr>
  7585. <td>
  7586. <code>remoteNamespace</code></br>
  7587. <em>
  7588. string
  7589. </em>
  7590. </td>
  7591. <td>
  7592. <em>(Optional)</em>
  7593. <p>Remote namespace to fetch the secrets from</p>
  7594. </td>
  7595. </tr>
  7596. </tbody>
  7597. </table>
  7598. <h3 id="external-secrets.io/v1.KubernetesServer">KubernetesServer
  7599. </h3>
  7600. <p>
  7601. (<em>Appears on:</em>
  7602. <a href="#external-secrets.io/v1.KubernetesProvider">KubernetesProvider</a>)
  7603. </p>
  7604. <p>
  7605. </p>
  7606. <table>
  7607. <thead>
  7608. <tr>
  7609. <th>Field</th>
  7610. <th>Description</th>
  7611. </tr>
  7612. </thead>
  7613. <tbody>
  7614. <tr>
  7615. <td>
  7616. <code>url</code></br>
  7617. <em>
  7618. string
  7619. </em>
  7620. </td>
  7621. <td>
  7622. <em>(Optional)</em>
  7623. <p>configures the Kubernetes server Address.</p>
  7624. </td>
  7625. </tr>
  7626. <tr>
  7627. <td>
  7628. <code>caBundle</code></br>
  7629. <em>
  7630. []byte
  7631. </em>
  7632. </td>
  7633. <td>
  7634. <em>(Optional)</em>
  7635. <p>CABundle is a base64-encoded CA certificate</p>
  7636. </td>
  7637. </tr>
  7638. <tr>
  7639. <td>
  7640. <code>caProvider</code></br>
  7641. <em>
  7642. <a href="#external-secrets.io/v1.CAProvider">
  7643. CAProvider
  7644. </a>
  7645. </em>
  7646. </td>
  7647. <td>
  7648. <em>(Optional)</em>
  7649. <p>see: <a href="https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider">https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider</a></p>
  7650. </td>
  7651. </tr>
  7652. </tbody>
  7653. </table>
  7654. <h3 id="external-secrets.io/v1.LdapAuthCredentials">LdapAuthCredentials
  7655. </h3>
  7656. <p>
  7657. (<em>Appears on:</em>
  7658. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  7659. </p>
  7660. <p>
  7661. </p>
  7662. <table>
  7663. <thead>
  7664. <tr>
  7665. <th>Field</th>
  7666. <th>Description</th>
  7667. </tr>
  7668. </thead>
  7669. <tbody>
  7670. <tr>
  7671. <td>
  7672. <code>identityId</code></br>
  7673. <em>
  7674. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7675. External Secrets meta/v1.SecretKeySelector
  7676. </a>
  7677. </em>
  7678. </td>
  7679. <td>
  7680. </td>
  7681. </tr>
  7682. <tr>
  7683. <td>
  7684. <code>ldapPassword</code></br>
  7685. <em>
  7686. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7687. External Secrets meta/v1.SecretKeySelector
  7688. </a>
  7689. </em>
  7690. </td>
  7691. <td>
  7692. </td>
  7693. </tr>
  7694. <tr>
  7695. <td>
  7696. <code>ldapUsername</code></br>
  7697. <em>
  7698. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7699. External Secrets meta/v1.SecretKeySelector
  7700. </a>
  7701. </em>
  7702. </td>
  7703. <td>
  7704. </td>
  7705. </tr>
  7706. </tbody>
  7707. </table>
  7708. <h3 id="external-secrets.io/v1.MachineIdentityScopeInWorkspace">MachineIdentityScopeInWorkspace
  7709. </h3>
  7710. <p>
  7711. (<em>Appears on:</em>
  7712. <a href="#external-secrets.io/v1.InfisicalProvider">InfisicalProvider</a>)
  7713. </p>
  7714. <p>
  7715. </p>
  7716. <table>
  7717. <thead>
  7718. <tr>
  7719. <th>Field</th>
  7720. <th>Description</th>
  7721. </tr>
  7722. </thead>
  7723. <tbody>
  7724. <tr>
  7725. <td>
  7726. <code>secretsPath</code></br>
  7727. <em>
  7728. string
  7729. </em>
  7730. </td>
  7731. <td>
  7732. <em>(Optional)</em>
  7733. <p>SecretsPath specifies the path to the secrets within the workspace. Defaults to &ldquo;/&rdquo; if not provided.</p>
  7734. </td>
  7735. </tr>
  7736. <tr>
  7737. <td>
  7738. <code>recursive</code></br>
  7739. <em>
  7740. bool
  7741. </em>
  7742. </td>
  7743. <td>
  7744. <em>(Optional)</em>
  7745. <p>Recursive indicates whether the secrets should be fetched recursively. Defaults to false if not provided.</p>
  7746. </td>
  7747. </tr>
  7748. <tr>
  7749. <td>
  7750. <code>environmentSlug</code></br>
  7751. <em>
  7752. string
  7753. </em>
  7754. </td>
  7755. <td>
  7756. <p>EnvironmentSlug is the required slug identifier for the environment.</p>
  7757. </td>
  7758. </tr>
  7759. <tr>
  7760. <td>
  7761. <code>projectSlug</code></br>
  7762. <em>
  7763. string
  7764. </em>
  7765. </td>
  7766. <td>
  7767. <p>ProjectSlug is the required slug identifier for the project.</p>
  7768. </td>
  7769. </tr>
  7770. <tr>
  7771. <td>
  7772. <code>expandSecretReferences</code></br>
  7773. <em>
  7774. bool
  7775. </em>
  7776. </td>
  7777. <td>
  7778. <em>(Optional)</em>
  7779. <p>ExpandSecretReferences indicates whether secret references should be expanded. Defaults to true if not provided.</p>
  7780. </td>
  7781. </tr>
  7782. </tbody>
  7783. </table>
  7784. <h3 id="external-secrets.io/v1.MaintenanceStatus">MaintenanceStatus
  7785. (<code>bool</code> alias)</p></h3>
  7786. <p>
  7787. </p>
  7788. <table>
  7789. <thead>
  7790. <tr>
  7791. <th>Value</th>
  7792. <th>Description</th>
  7793. </tr>
  7794. </thead>
  7795. <tbody><tr><td><p>true</p></td>
  7796. <td></td>
  7797. </tr><tr><td><p>false</p></td>
  7798. <td></td>
  7799. </tr></tbody>
  7800. </table>
  7801. <h3 id="external-secrets.io/v1.NTLMProtocol">NTLMProtocol
  7802. </h3>
  7803. <p>
  7804. (<em>Appears on:</em>
  7805. <a href="#external-secrets.io/v1.AuthorizationProtocol">AuthorizationProtocol</a>)
  7806. </p>
  7807. <p>
  7808. <p>NTLMProtocol contains the NTLM-specific configuration.</p>
  7809. </p>
  7810. <table>
  7811. <thead>
  7812. <tr>
  7813. <th>Field</th>
  7814. <th>Description</th>
  7815. </tr>
  7816. </thead>
  7817. <tbody>
  7818. <tr>
  7819. <td>
  7820. <code>usernameSecret</code></br>
  7821. <em>
  7822. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7823. External Secrets meta/v1.SecretKeySelector
  7824. </a>
  7825. </em>
  7826. </td>
  7827. <td>
  7828. </td>
  7829. </tr>
  7830. <tr>
  7831. <td>
  7832. <code>passwordSecret</code></br>
  7833. <em>
  7834. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7835. External Secrets meta/v1.SecretKeySelector
  7836. </a>
  7837. </em>
  7838. </td>
  7839. <td>
  7840. </td>
  7841. </tr>
  7842. </tbody>
  7843. </table>
  7844. <h3 id="external-secrets.io/v1.NoSecretError">NoSecretError
  7845. </h3>
  7846. <p>
  7847. <p>NoSecretError shall be returned when a GetSecret can not find the
  7848. desired secret. This is used for deletionPolicy.</p>
  7849. </p>
  7850. <h3 id="external-secrets.io/v1.NotModifiedError">NotModifiedError
  7851. </h3>
  7852. <p>
  7853. <p>NotModifiedError to signal that the webhook received no changes,
  7854. and it should just return without doing anything.</p>
  7855. </p>
  7856. <h3 id="external-secrets.io/v1.OciAuthCredentials">OciAuthCredentials
  7857. </h3>
  7858. <p>
  7859. (<em>Appears on:</em>
  7860. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  7861. </p>
  7862. <p>
  7863. </p>
  7864. <table>
  7865. <thead>
  7866. <tr>
  7867. <th>Field</th>
  7868. <th>Description</th>
  7869. </tr>
  7870. </thead>
  7871. <tbody>
  7872. <tr>
  7873. <td>
  7874. <code>identityId</code></br>
  7875. <em>
  7876. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7877. External Secrets meta/v1.SecretKeySelector
  7878. </a>
  7879. </em>
  7880. </td>
  7881. <td>
  7882. </td>
  7883. </tr>
  7884. <tr>
  7885. <td>
  7886. <code>privateKey</code></br>
  7887. <em>
  7888. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7889. External Secrets meta/v1.SecretKeySelector
  7890. </a>
  7891. </em>
  7892. </td>
  7893. <td>
  7894. </td>
  7895. </tr>
  7896. <tr>
  7897. <td>
  7898. <code>privateKeyPassphrase</code></br>
  7899. <em>
  7900. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7901. External Secrets meta/v1.SecretKeySelector
  7902. </a>
  7903. </em>
  7904. </td>
  7905. <td>
  7906. <em>(Optional)</em>
  7907. </td>
  7908. </tr>
  7909. <tr>
  7910. <td>
  7911. <code>fingerprint</code></br>
  7912. <em>
  7913. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7914. External Secrets meta/v1.SecretKeySelector
  7915. </a>
  7916. </em>
  7917. </td>
  7918. <td>
  7919. </td>
  7920. </tr>
  7921. <tr>
  7922. <td>
  7923. <code>userId</code></br>
  7924. <em>
  7925. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7926. External Secrets meta/v1.SecretKeySelector
  7927. </a>
  7928. </em>
  7929. </td>
  7930. <td>
  7931. </td>
  7932. </tr>
  7933. <tr>
  7934. <td>
  7935. <code>tenancyId</code></br>
  7936. <em>
  7937. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7938. External Secrets meta/v1.SecretKeySelector
  7939. </a>
  7940. </em>
  7941. </td>
  7942. <td>
  7943. </td>
  7944. </tr>
  7945. <tr>
  7946. <td>
  7947. <code>region</code></br>
  7948. <em>
  7949. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7950. External Secrets meta/v1.SecretKeySelector
  7951. </a>
  7952. </em>
  7953. </td>
  7954. <td>
  7955. </td>
  7956. </tr>
  7957. </tbody>
  7958. </table>
  7959. <h3 id="external-secrets.io/v1.OnboardbaseAuthSecretRef">OnboardbaseAuthSecretRef
  7960. </h3>
  7961. <p>
  7962. (<em>Appears on:</em>
  7963. <a href="#external-secrets.io/v1.OnboardbaseProvider">OnboardbaseProvider</a>)
  7964. </p>
  7965. <p>
  7966. <p>OnboardbaseAuthSecretRef holds secret references for onboardbase API Key credentials.</p>
  7967. </p>
  7968. <table>
  7969. <thead>
  7970. <tr>
  7971. <th>Field</th>
  7972. <th>Description</th>
  7973. </tr>
  7974. </thead>
  7975. <tbody>
  7976. <tr>
  7977. <td>
  7978. <code>apiKeyRef</code></br>
  7979. <em>
  7980. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7981. External Secrets meta/v1.SecretKeySelector
  7982. </a>
  7983. </em>
  7984. </td>
  7985. <td>
  7986. <p>OnboardbaseAPIKey is the APIKey generated by an admin account.
  7987. It is used to recognize and authorize access to a project and environment within onboardbase</p>
  7988. </td>
  7989. </tr>
  7990. <tr>
  7991. <td>
  7992. <code>passcodeRef</code></br>
  7993. <em>
  7994. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7995. External Secrets meta/v1.SecretKeySelector
  7996. </a>
  7997. </em>
  7998. </td>
  7999. <td>
  8000. <p>OnboardbasePasscode is the passcode attached to the API Key</p>
  8001. </td>
  8002. </tr>
  8003. </tbody>
  8004. </table>
  8005. <h3 id="external-secrets.io/v1.OnboardbaseProvider">OnboardbaseProvider
  8006. </h3>
  8007. <p>
  8008. (<em>Appears on:</em>
  8009. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8010. </p>
  8011. <p>
  8012. <p>OnboardbaseProvider configures a store to sync secrets using the Onboardbase provider.
  8013. Project and Config are required if not using a Service Token.</p>
  8014. </p>
  8015. <table>
  8016. <thead>
  8017. <tr>
  8018. <th>Field</th>
  8019. <th>Description</th>
  8020. </tr>
  8021. </thead>
  8022. <tbody>
  8023. <tr>
  8024. <td>
  8025. <code>auth</code></br>
  8026. <em>
  8027. <a href="#external-secrets.io/v1.OnboardbaseAuthSecretRef">
  8028. OnboardbaseAuthSecretRef
  8029. </a>
  8030. </em>
  8031. </td>
  8032. <td>
  8033. <p>Auth configures how the Operator authenticates with the Onboardbase API</p>
  8034. </td>
  8035. </tr>
  8036. <tr>
  8037. <td>
  8038. <code>apiHost</code></br>
  8039. <em>
  8040. string
  8041. </em>
  8042. </td>
  8043. <td>
  8044. <p>APIHost use this to configure the host url for the API for selfhosted installation, default is <a href="https://public.onboardbase.com/api/v1/">https://public.onboardbase.com/api/v1/</a></p>
  8045. </td>
  8046. </tr>
  8047. <tr>
  8048. <td>
  8049. <code>project</code></br>
  8050. <em>
  8051. string
  8052. </em>
  8053. </td>
  8054. <td>
  8055. <p>Project is an onboardbase project that the secrets should be pulled from</p>
  8056. </td>
  8057. </tr>
  8058. <tr>
  8059. <td>
  8060. <code>environment</code></br>
  8061. <em>
  8062. string
  8063. </em>
  8064. </td>
  8065. <td>
  8066. <p>Environment is the name of an environmnent within a project to pull the secrets from</p>
  8067. </td>
  8068. </tr>
  8069. </tbody>
  8070. </table>
  8071. <h3 id="external-secrets.io/v1.OnePasswordAuth">OnePasswordAuth
  8072. </h3>
  8073. <p>
  8074. (<em>Appears on:</em>
  8075. <a href="#external-secrets.io/v1.OnePasswordProvider">OnePasswordProvider</a>)
  8076. </p>
  8077. <p>
  8078. <p>OnePasswordAuth contains a secretRef for credentials.</p>
  8079. </p>
  8080. <table>
  8081. <thead>
  8082. <tr>
  8083. <th>Field</th>
  8084. <th>Description</th>
  8085. </tr>
  8086. </thead>
  8087. <tbody>
  8088. <tr>
  8089. <td>
  8090. <code>secretRef</code></br>
  8091. <em>
  8092. <a href="#external-secrets.io/v1.OnePasswordAuthSecretRef">
  8093. OnePasswordAuthSecretRef
  8094. </a>
  8095. </em>
  8096. </td>
  8097. <td>
  8098. </td>
  8099. </tr>
  8100. </tbody>
  8101. </table>
  8102. <h3 id="external-secrets.io/v1.OnePasswordAuthSecretRef">OnePasswordAuthSecretRef
  8103. </h3>
  8104. <p>
  8105. (<em>Appears on:</em>
  8106. <a href="#external-secrets.io/v1.OnePasswordAuth">OnePasswordAuth</a>)
  8107. </p>
  8108. <p>
  8109. <p>OnePasswordAuthSecretRef holds secret references for 1Password credentials.</p>
  8110. </p>
  8111. <table>
  8112. <thead>
  8113. <tr>
  8114. <th>Field</th>
  8115. <th>Description</th>
  8116. </tr>
  8117. </thead>
  8118. <tbody>
  8119. <tr>
  8120. <td>
  8121. <code>connectTokenSecretRef</code></br>
  8122. <em>
  8123. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8124. External Secrets meta/v1.SecretKeySelector
  8125. </a>
  8126. </em>
  8127. </td>
  8128. <td>
  8129. <p>The ConnectToken is used for authentication to a 1Password Connect Server.</p>
  8130. </td>
  8131. </tr>
  8132. </tbody>
  8133. </table>
  8134. <h3 id="external-secrets.io/v1.OnePasswordProvider">OnePasswordProvider
  8135. </h3>
  8136. <p>
  8137. (<em>Appears on:</em>
  8138. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8139. </p>
  8140. <p>
  8141. <p>OnePasswordProvider configures a store to sync secrets using the 1Password Secret Manager provider.</p>
  8142. </p>
  8143. <table>
  8144. <thead>
  8145. <tr>
  8146. <th>Field</th>
  8147. <th>Description</th>
  8148. </tr>
  8149. </thead>
  8150. <tbody>
  8151. <tr>
  8152. <td>
  8153. <code>auth</code></br>
  8154. <em>
  8155. <a href="#external-secrets.io/v1.OnePasswordAuth">
  8156. OnePasswordAuth
  8157. </a>
  8158. </em>
  8159. </td>
  8160. <td>
  8161. <p>Auth defines the information necessary to authenticate against OnePassword Connect Server</p>
  8162. </td>
  8163. </tr>
  8164. <tr>
  8165. <td>
  8166. <code>connectHost</code></br>
  8167. <em>
  8168. string
  8169. </em>
  8170. </td>
  8171. <td>
  8172. <p>ConnectHost defines the OnePassword Connect Server to connect to</p>
  8173. </td>
  8174. </tr>
  8175. <tr>
  8176. <td>
  8177. <code>vaults</code></br>
  8178. <em>
  8179. map[string]int
  8180. </em>
  8181. </td>
  8182. <td>
  8183. <p>Vaults defines which OnePassword vaults to search in which order</p>
  8184. </td>
  8185. </tr>
  8186. </tbody>
  8187. </table>
  8188. <h3 id="external-secrets.io/v1.OnePasswordSDKAuth">OnePasswordSDKAuth
  8189. </h3>
  8190. <p>
  8191. (<em>Appears on:</em>
  8192. <a href="#external-secrets.io/v1.OnePasswordSDKProvider">OnePasswordSDKProvider</a>)
  8193. </p>
  8194. <p>
  8195. <p>OnePasswordSDKAuth contains a secretRef for the service account token.</p>
  8196. </p>
  8197. <table>
  8198. <thead>
  8199. <tr>
  8200. <th>Field</th>
  8201. <th>Description</th>
  8202. </tr>
  8203. </thead>
  8204. <tbody>
  8205. <tr>
  8206. <td>
  8207. <code>serviceAccountSecretRef</code></br>
  8208. <em>
  8209. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8210. External Secrets meta/v1.SecretKeySelector
  8211. </a>
  8212. </em>
  8213. </td>
  8214. <td>
  8215. <p>ServiceAccountSecretRef points to the secret containing the token to access 1Password vault.</p>
  8216. </td>
  8217. </tr>
  8218. </tbody>
  8219. </table>
  8220. <h3 id="external-secrets.io/v1.OnePasswordSDKProvider">OnePasswordSDKProvider
  8221. </h3>
  8222. <p>
  8223. (<em>Appears on:</em>
  8224. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8225. </p>
  8226. <p>
  8227. <p>OnePasswordSDKProvider configures a store to sync secrets using the 1Password sdk.</p>
  8228. </p>
  8229. <table>
  8230. <thead>
  8231. <tr>
  8232. <th>Field</th>
  8233. <th>Description</th>
  8234. </tr>
  8235. </thead>
  8236. <tbody>
  8237. <tr>
  8238. <td>
  8239. <code>vault</code></br>
  8240. <em>
  8241. string
  8242. </em>
  8243. </td>
  8244. <td>
  8245. <p>Vault defines the vault&rsquo;s name or uuid to access. Do NOT add op:// prefix. This will be done automatically.</p>
  8246. </td>
  8247. </tr>
  8248. <tr>
  8249. <td>
  8250. <code>integrationInfo</code></br>
  8251. <em>
  8252. <a href="#external-secrets.io/v1.IntegrationInfo">
  8253. IntegrationInfo
  8254. </a>
  8255. </em>
  8256. </td>
  8257. <td>
  8258. <em>(Optional)</em>
  8259. <p>IntegrationInfo specifies the name and version of the integration built using the 1Password Go SDK.
  8260. If you don&rsquo;t know which name and version to use, use <code>DefaultIntegrationName</code> and <code>DefaultIntegrationVersion</code>, respectively.</p>
  8261. </td>
  8262. </tr>
  8263. <tr>
  8264. <td>
  8265. <code>auth</code></br>
  8266. <em>
  8267. <a href="#external-secrets.io/v1.OnePasswordSDKAuth">
  8268. OnePasswordSDKAuth
  8269. </a>
  8270. </em>
  8271. </td>
  8272. <td>
  8273. <p>Auth defines the information necessary to authenticate against OnePassword API.</p>
  8274. </td>
  8275. </tr>
  8276. </tbody>
  8277. </table>
  8278. <h3 id="external-secrets.io/v1.OracleAuth">OracleAuth
  8279. </h3>
  8280. <p>
  8281. (<em>Appears on:</em>
  8282. <a href="#external-secrets.io/v1.OracleProvider">OracleProvider</a>)
  8283. </p>
  8284. <p>
  8285. </p>
  8286. <table>
  8287. <thead>
  8288. <tr>
  8289. <th>Field</th>
  8290. <th>Description</th>
  8291. </tr>
  8292. </thead>
  8293. <tbody>
  8294. <tr>
  8295. <td>
  8296. <code>tenancy</code></br>
  8297. <em>
  8298. string
  8299. </em>
  8300. </td>
  8301. <td>
  8302. <p>Tenancy is the tenancy OCID where user is located.</p>
  8303. </td>
  8304. </tr>
  8305. <tr>
  8306. <td>
  8307. <code>user</code></br>
  8308. <em>
  8309. string
  8310. </em>
  8311. </td>
  8312. <td>
  8313. <p>User is an access OCID specific to the account.</p>
  8314. </td>
  8315. </tr>
  8316. <tr>
  8317. <td>
  8318. <code>secretRef</code></br>
  8319. <em>
  8320. <a href="#external-secrets.io/v1.OracleSecretRef">
  8321. OracleSecretRef
  8322. </a>
  8323. </em>
  8324. </td>
  8325. <td>
  8326. <p>SecretRef to pass through sensitive information.</p>
  8327. </td>
  8328. </tr>
  8329. </tbody>
  8330. </table>
  8331. <h3 id="external-secrets.io/v1.OraclePrincipalType">OraclePrincipalType
  8332. (<code>string</code> alias)</p></h3>
  8333. <p>
  8334. (<em>Appears on:</em>
  8335. <a href="#external-secrets.io/v1.OracleProvider">OracleProvider</a>)
  8336. </p>
  8337. <p>
  8338. </p>
  8339. <table>
  8340. <thead>
  8341. <tr>
  8342. <th>Value</th>
  8343. <th>Description</th>
  8344. </tr>
  8345. </thead>
  8346. <tbody><tr><td><p>&#34;InstancePrincipal&#34;</p></td>
  8347. <td><p>InstancePrincipal represents a instance principal.</p>
  8348. </td>
  8349. </tr><tr><td><p>&#34;UserPrincipal&#34;</p></td>
  8350. <td><p>UserPrincipal represents a user principal.</p>
  8351. </td>
  8352. </tr><tr><td><p>&#34;Workload&#34;</p></td>
  8353. <td><p>WorkloadPrincipal represents a workload principal.</p>
  8354. </td>
  8355. </tr></tbody>
  8356. </table>
  8357. <h3 id="external-secrets.io/v1.OracleProvider">OracleProvider
  8358. </h3>
  8359. <p>
  8360. (<em>Appears on:</em>
  8361. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8362. </p>
  8363. <p>
  8364. <p>Configures an store to sync secrets using a Oracle Vault
  8365. backend.</p>
  8366. </p>
  8367. <table>
  8368. <thead>
  8369. <tr>
  8370. <th>Field</th>
  8371. <th>Description</th>
  8372. </tr>
  8373. </thead>
  8374. <tbody>
  8375. <tr>
  8376. <td>
  8377. <code>region</code></br>
  8378. <em>
  8379. string
  8380. </em>
  8381. </td>
  8382. <td>
  8383. <p>Region is the region where vault is located.</p>
  8384. </td>
  8385. </tr>
  8386. <tr>
  8387. <td>
  8388. <code>vault</code></br>
  8389. <em>
  8390. string
  8391. </em>
  8392. </td>
  8393. <td>
  8394. <p>Vault is the vault&rsquo;s OCID of the specific vault where secret is located.</p>
  8395. </td>
  8396. </tr>
  8397. <tr>
  8398. <td>
  8399. <code>compartment</code></br>
  8400. <em>
  8401. string
  8402. </em>
  8403. </td>
  8404. <td>
  8405. <em>(Optional)</em>
  8406. <p>Compartment is the vault compartment OCID.
  8407. Required for PushSecret</p>
  8408. </td>
  8409. </tr>
  8410. <tr>
  8411. <td>
  8412. <code>encryptionKey</code></br>
  8413. <em>
  8414. string
  8415. </em>
  8416. </td>
  8417. <td>
  8418. <em>(Optional)</em>
  8419. <p>EncryptionKey is the OCID of the encryption key within the vault.
  8420. Required for PushSecret</p>
  8421. </td>
  8422. </tr>
  8423. <tr>
  8424. <td>
  8425. <code>principalType</code></br>
  8426. <em>
  8427. <a href="#external-secrets.io/v1.OraclePrincipalType">
  8428. OraclePrincipalType
  8429. </a>
  8430. </em>
  8431. </td>
  8432. <td>
  8433. <em>(Optional)</em>
  8434. <p>The type of principal to use for authentication. If left blank, the Auth struct will
  8435. determine the principal type. This optional field must be specified if using
  8436. workload identity.</p>
  8437. </td>
  8438. </tr>
  8439. <tr>
  8440. <td>
  8441. <code>auth</code></br>
  8442. <em>
  8443. <a href="#external-secrets.io/v1.OracleAuth">
  8444. OracleAuth
  8445. </a>
  8446. </em>
  8447. </td>
  8448. <td>
  8449. <em>(Optional)</em>
  8450. <p>Auth configures how secret-manager authenticates with the Oracle Vault.
  8451. If empty, use the instance principal, otherwise the user credentials specified in Auth.</p>
  8452. </td>
  8453. </tr>
  8454. <tr>
  8455. <td>
  8456. <code>serviceAccountRef</code></br>
  8457. <em>
  8458. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  8459. External Secrets meta/v1.ServiceAccountSelector
  8460. </a>
  8461. </em>
  8462. </td>
  8463. <td>
  8464. <em>(Optional)</em>
  8465. <p>ServiceAccountRef specified the service account
  8466. that should be used when authenticating with WorkloadIdentity.</p>
  8467. </td>
  8468. </tr>
  8469. </tbody>
  8470. </table>
  8471. <h3 id="external-secrets.io/v1.OracleSecretRef">OracleSecretRef
  8472. </h3>
  8473. <p>
  8474. (<em>Appears on:</em>
  8475. <a href="#external-secrets.io/v1.OracleAuth">OracleAuth</a>)
  8476. </p>
  8477. <p>
  8478. </p>
  8479. <table>
  8480. <thead>
  8481. <tr>
  8482. <th>Field</th>
  8483. <th>Description</th>
  8484. </tr>
  8485. </thead>
  8486. <tbody>
  8487. <tr>
  8488. <td>
  8489. <code>privatekey</code></br>
  8490. <em>
  8491. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8492. External Secrets meta/v1.SecretKeySelector
  8493. </a>
  8494. </em>
  8495. </td>
  8496. <td>
  8497. <p>PrivateKey is the user&rsquo;s API Signing Key in PEM format, used for authentication.</p>
  8498. </td>
  8499. </tr>
  8500. <tr>
  8501. <td>
  8502. <code>fingerprint</code></br>
  8503. <em>
  8504. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8505. External Secrets meta/v1.SecretKeySelector
  8506. </a>
  8507. </em>
  8508. </td>
  8509. <td>
  8510. <p>Fingerprint is the fingerprint of the API private key.</p>
  8511. </td>
  8512. </tr>
  8513. </tbody>
  8514. </table>
  8515. <h3 id="external-secrets.io/v1.PassboltAuth">PassboltAuth
  8516. </h3>
  8517. <p>
  8518. (<em>Appears on:</em>
  8519. <a href="#external-secrets.io/v1.PassboltProvider">PassboltProvider</a>)
  8520. </p>
  8521. <p>
  8522. <p>Passbolt contains a secretRef for the passbolt credentials.</p>
  8523. </p>
  8524. <table>
  8525. <thead>
  8526. <tr>
  8527. <th>Field</th>
  8528. <th>Description</th>
  8529. </tr>
  8530. </thead>
  8531. <tbody>
  8532. <tr>
  8533. <td>
  8534. <code>passwordSecretRef</code></br>
  8535. <em>
  8536. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8537. External Secrets meta/v1.SecretKeySelector
  8538. </a>
  8539. </em>
  8540. </td>
  8541. <td>
  8542. </td>
  8543. </tr>
  8544. <tr>
  8545. <td>
  8546. <code>privateKeySecretRef</code></br>
  8547. <em>
  8548. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8549. External Secrets meta/v1.SecretKeySelector
  8550. </a>
  8551. </em>
  8552. </td>
  8553. <td>
  8554. </td>
  8555. </tr>
  8556. </tbody>
  8557. </table>
  8558. <h3 id="external-secrets.io/v1.PassboltProvider">PassboltProvider
  8559. </h3>
  8560. <p>
  8561. (<em>Appears on:</em>
  8562. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8563. </p>
  8564. <p>
  8565. </p>
  8566. <table>
  8567. <thead>
  8568. <tr>
  8569. <th>Field</th>
  8570. <th>Description</th>
  8571. </tr>
  8572. </thead>
  8573. <tbody>
  8574. <tr>
  8575. <td>
  8576. <code>auth</code></br>
  8577. <em>
  8578. <a href="#external-secrets.io/v1.PassboltAuth">
  8579. PassboltAuth
  8580. </a>
  8581. </em>
  8582. </td>
  8583. <td>
  8584. <p>Auth defines the information necessary to authenticate against Passbolt Server</p>
  8585. </td>
  8586. </tr>
  8587. <tr>
  8588. <td>
  8589. <code>host</code></br>
  8590. <em>
  8591. string
  8592. </em>
  8593. </td>
  8594. <td>
  8595. <p>Host defines the Passbolt Server to connect to</p>
  8596. </td>
  8597. </tr>
  8598. </tbody>
  8599. </table>
  8600. <h3 id="external-secrets.io/v1.PasswordDepotAuth">PasswordDepotAuth
  8601. </h3>
  8602. <p>
  8603. (<em>Appears on:</em>
  8604. <a href="#external-secrets.io/v1.PasswordDepotProvider">PasswordDepotProvider</a>)
  8605. </p>
  8606. <p>
  8607. </p>
  8608. <table>
  8609. <thead>
  8610. <tr>
  8611. <th>Field</th>
  8612. <th>Description</th>
  8613. </tr>
  8614. </thead>
  8615. <tbody>
  8616. <tr>
  8617. <td>
  8618. <code>secretRef</code></br>
  8619. <em>
  8620. <a href="#external-secrets.io/v1.PasswordDepotSecretRef">
  8621. PasswordDepotSecretRef
  8622. </a>
  8623. </em>
  8624. </td>
  8625. <td>
  8626. </td>
  8627. </tr>
  8628. </tbody>
  8629. </table>
  8630. <h3 id="external-secrets.io/v1.PasswordDepotProvider">PasswordDepotProvider
  8631. </h3>
  8632. <p>
  8633. (<em>Appears on:</em>
  8634. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8635. </p>
  8636. <p>
  8637. <p>Configures a store to sync secrets with a Password Depot instance.</p>
  8638. </p>
  8639. <table>
  8640. <thead>
  8641. <tr>
  8642. <th>Field</th>
  8643. <th>Description</th>
  8644. </tr>
  8645. </thead>
  8646. <tbody>
  8647. <tr>
  8648. <td>
  8649. <code>host</code></br>
  8650. <em>
  8651. string
  8652. </em>
  8653. </td>
  8654. <td>
  8655. <p>URL configures the Password Depot instance URL.</p>
  8656. </td>
  8657. </tr>
  8658. <tr>
  8659. <td>
  8660. <code>database</code></br>
  8661. <em>
  8662. string
  8663. </em>
  8664. </td>
  8665. <td>
  8666. <p>Database to use as source</p>
  8667. </td>
  8668. </tr>
  8669. <tr>
  8670. <td>
  8671. <code>auth</code></br>
  8672. <em>
  8673. <a href="#external-secrets.io/v1.PasswordDepotAuth">
  8674. PasswordDepotAuth
  8675. </a>
  8676. </em>
  8677. </td>
  8678. <td>
  8679. <p>Auth configures how secret-manager authenticates with a Password Depot instance.</p>
  8680. </td>
  8681. </tr>
  8682. </tbody>
  8683. </table>
  8684. <h3 id="external-secrets.io/v1.PasswordDepotSecretRef">PasswordDepotSecretRef
  8685. </h3>
  8686. <p>
  8687. (<em>Appears on:</em>
  8688. <a href="#external-secrets.io/v1.PasswordDepotAuth">PasswordDepotAuth</a>)
  8689. </p>
  8690. <p>
  8691. </p>
  8692. <table>
  8693. <thead>
  8694. <tr>
  8695. <th>Field</th>
  8696. <th>Description</th>
  8697. </tr>
  8698. </thead>
  8699. <tbody>
  8700. <tr>
  8701. <td>
  8702. <code>credentials</code></br>
  8703. <em>
  8704. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8705. External Secrets meta/v1.SecretKeySelector
  8706. </a>
  8707. </em>
  8708. </td>
  8709. <td>
  8710. <em>(Optional)</em>
  8711. <p>Username / Password is used for authentication.</p>
  8712. </td>
  8713. </tr>
  8714. </tbody>
  8715. </table>
  8716. <h3 id="external-secrets.io/v1.PreviderAuth">PreviderAuth
  8717. </h3>
  8718. <p>
  8719. (<em>Appears on:</em>
  8720. <a href="#external-secrets.io/v1.PreviderProvider">PreviderProvider</a>)
  8721. </p>
  8722. <p>
  8723. <p>PreviderAuth contains a secretRef for credentials.</p>
  8724. </p>
  8725. <table>
  8726. <thead>
  8727. <tr>
  8728. <th>Field</th>
  8729. <th>Description</th>
  8730. </tr>
  8731. </thead>
  8732. <tbody>
  8733. <tr>
  8734. <td>
  8735. <code>secretRef</code></br>
  8736. <em>
  8737. <a href="#external-secrets.io/v1.PreviderAuthSecretRef">
  8738. PreviderAuthSecretRef
  8739. </a>
  8740. </em>
  8741. </td>
  8742. <td>
  8743. <em>(Optional)</em>
  8744. </td>
  8745. </tr>
  8746. </tbody>
  8747. </table>
  8748. <h3 id="external-secrets.io/v1.PreviderAuthSecretRef">PreviderAuthSecretRef
  8749. </h3>
  8750. <p>
  8751. (<em>Appears on:</em>
  8752. <a href="#external-secrets.io/v1.PreviderAuth">PreviderAuth</a>)
  8753. </p>
  8754. <p>
  8755. <p>PreviderAuthSecretRef holds secret references for Previder Vault credentials.</p>
  8756. </p>
  8757. <table>
  8758. <thead>
  8759. <tr>
  8760. <th>Field</th>
  8761. <th>Description</th>
  8762. </tr>
  8763. </thead>
  8764. <tbody>
  8765. <tr>
  8766. <td>
  8767. <code>accessToken</code></br>
  8768. <em>
  8769. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8770. External Secrets meta/v1.SecretKeySelector
  8771. </a>
  8772. </em>
  8773. </td>
  8774. <td>
  8775. <p>The AccessToken is used for authentication</p>
  8776. </td>
  8777. </tr>
  8778. </tbody>
  8779. </table>
  8780. <h3 id="external-secrets.io/v1.PreviderProvider">PreviderProvider
  8781. </h3>
  8782. <p>
  8783. (<em>Appears on:</em>
  8784. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8785. </p>
  8786. <p>
  8787. <p>PreviderProvider configures a store to sync secrets using the Previder Secret Manager provider.</p>
  8788. </p>
  8789. <table>
  8790. <thead>
  8791. <tr>
  8792. <th>Field</th>
  8793. <th>Description</th>
  8794. </tr>
  8795. </thead>
  8796. <tbody>
  8797. <tr>
  8798. <td>
  8799. <code>auth</code></br>
  8800. <em>
  8801. <a href="#external-secrets.io/v1.PreviderAuth">
  8802. PreviderAuth
  8803. </a>
  8804. </em>
  8805. </td>
  8806. <td>
  8807. </td>
  8808. </tr>
  8809. <tr>
  8810. <td>
  8811. <code>baseUri</code></br>
  8812. <em>
  8813. string
  8814. </em>
  8815. </td>
  8816. <td>
  8817. <em>(Optional)</em>
  8818. </td>
  8819. </tr>
  8820. </tbody>
  8821. </table>
  8822. <h3 id="external-secrets.io/v1.Provider">Provider
  8823. </h3>
  8824. <p>
  8825. <p>Provider is a common interface for interacting with secret backends.</p>
  8826. </p>
  8827. <h3 id="external-secrets.io/v1.PulumiProvider">PulumiProvider
  8828. </h3>
  8829. <p>
  8830. (<em>Appears on:</em>
  8831. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8832. </p>
  8833. <p>
  8834. </p>
  8835. <table>
  8836. <thead>
  8837. <tr>
  8838. <th>Field</th>
  8839. <th>Description</th>
  8840. </tr>
  8841. </thead>
  8842. <tbody>
  8843. <tr>
  8844. <td>
  8845. <code>apiUrl</code></br>
  8846. <em>
  8847. string
  8848. </em>
  8849. </td>
  8850. <td>
  8851. <p>APIURL is the URL of the Pulumi API.</p>
  8852. </td>
  8853. </tr>
  8854. <tr>
  8855. <td>
  8856. <code>accessToken</code></br>
  8857. <em>
  8858. <a href="#external-secrets.io/v1.PulumiProviderSecretRef">
  8859. PulumiProviderSecretRef
  8860. </a>
  8861. </em>
  8862. </td>
  8863. <td>
  8864. <p>AccessToken is the access tokens to sign in to the Pulumi Cloud Console.</p>
  8865. </td>
  8866. </tr>
  8867. <tr>
  8868. <td>
  8869. <code>organization</code></br>
  8870. <em>
  8871. string
  8872. </em>
  8873. </td>
  8874. <td>
  8875. <p>Organization are a space to collaborate on shared projects and stacks.
  8876. To create a new organization, visit <a href="https://app.pulumi.com/">https://app.pulumi.com/</a> and click &ldquo;New Organization&rdquo;.</p>
  8877. </td>
  8878. </tr>
  8879. <tr>
  8880. <td>
  8881. <code>project</code></br>
  8882. <em>
  8883. string
  8884. </em>
  8885. </td>
  8886. <td>
  8887. <p>Project is the name of the Pulumi ESC project the environment belongs to.</p>
  8888. </td>
  8889. </tr>
  8890. <tr>
  8891. <td>
  8892. <code>environment</code></br>
  8893. <em>
  8894. string
  8895. </em>
  8896. </td>
  8897. <td>
  8898. <p>Environment are YAML documents composed of static key-value pairs, programmatic expressions,
  8899. dynamically retrieved values from supported providers including all major clouds,
  8900. and other Pulumi ESC environments.
  8901. To create a new environment, visit <a href="https://www.pulumi.com/docs/esc/environments/">https://www.pulumi.com/docs/esc/environments/</a> for more information.</p>
  8902. </td>
  8903. </tr>
  8904. </tbody>
  8905. </table>
  8906. <h3 id="external-secrets.io/v1.PulumiProviderSecretRef">PulumiProviderSecretRef
  8907. </h3>
  8908. <p>
  8909. (<em>Appears on:</em>
  8910. <a href="#external-secrets.io/v1.PulumiProvider">PulumiProvider</a>)
  8911. </p>
  8912. <p>
  8913. </p>
  8914. <table>
  8915. <thead>
  8916. <tr>
  8917. <th>Field</th>
  8918. <th>Description</th>
  8919. </tr>
  8920. </thead>
  8921. <tbody>
  8922. <tr>
  8923. <td>
  8924. <code>secretRef</code></br>
  8925. <em>
  8926. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8927. External Secrets meta/v1.SecretKeySelector
  8928. </a>
  8929. </em>
  8930. </td>
  8931. <td>
  8932. <p>SecretRef is a reference to a secret containing the Pulumi API token.</p>
  8933. </td>
  8934. </tr>
  8935. </tbody>
  8936. </table>
  8937. <h3 id="external-secrets.io/v1.PushSecretData">PushSecretData
  8938. </h3>
  8939. <p>
  8940. <p>PushSecretData is an interface to allow using v1alpha1.PushSecretData content in Provider registered in v1.</p>
  8941. </p>
  8942. <h3 id="external-secrets.io/v1.PushSecretRemoteRef">PushSecretRemoteRef
  8943. </h3>
  8944. <p>
  8945. <p>PushSecretRemoteRef is an interface to allow using v1alpha1.PushSecretRemoteRef in Provider registered in v1.</p>
  8946. </p>
  8947. <h3 id="external-secrets.io/v1.ScalewayProvider">ScalewayProvider
  8948. </h3>
  8949. <p>
  8950. (<em>Appears on:</em>
  8951. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8952. </p>
  8953. <p>
  8954. </p>
  8955. <table>
  8956. <thead>
  8957. <tr>
  8958. <th>Field</th>
  8959. <th>Description</th>
  8960. </tr>
  8961. </thead>
  8962. <tbody>
  8963. <tr>
  8964. <td>
  8965. <code>apiUrl</code></br>
  8966. <em>
  8967. string
  8968. </em>
  8969. </td>
  8970. <td>
  8971. <em>(Optional)</em>
  8972. <p>APIURL is the url of the api to use. Defaults to <a href="https://api.scaleway.com">https://api.scaleway.com</a></p>
  8973. </td>
  8974. </tr>
  8975. <tr>
  8976. <td>
  8977. <code>region</code></br>
  8978. <em>
  8979. string
  8980. </em>
  8981. </td>
  8982. <td>
  8983. <p>Region where your secrets are located: <a href="https://developers.scaleway.com/en/quickstart/#region-and-zone">https://developers.scaleway.com/en/quickstart/#region-and-zone</a></p>
  8984. </td>
  8985. </tr>
  8986. <tr>
  8987. <td>
  8988. <code>projectId</code></br>
  8989. <em>
  8990. string
  8991. </em>
  8992. </td>
  8993. <td>
  8994. <p>ProjectID is the id of your project, which you can find in the console: <a href="https://console.scaleway.com/project/settings">https://console.scaleway.com/project/settings</a></p>
  8995. </td>
  8996. </tr>
  8997. <tr>
  8998. <td>
  8999. <code>accessKey</code></br>
  9000. <em>
  9001. <a href="#external-secrets.io/v1.ScalewayProviderSecretRef">
  9002. ScalewayProviderSecretRef
  9003. </a>
  9004. </em>
  9005. </td>
  9006. <td>
  9007. <p>AccessKey is the non-secret part of the api key.</p>
  9008. </td>
  9009. </tr>
  9010. <tr>
  9011. <td>
  9012. <code>secretKey</code></br>
  9013. <em>
  9014. <a href="#external-secrets.io/v1.ScalewayProviderSecretRef">
  9015. ScalewayProviderSecretRef
  9016. </a>
  9017. </em>
  9018. </td>
  9019. <td>
  9020. <p>SecretKey is the non-secret part of the api key.</p>
  9021. </td>
  9022. </tr>
  9023. </tbody>
  9024. </table>
  9025. <h3 id="external-secrets.io/v1.ScalewayProviderSecretRef">ScalewayProviderSecretRef
  9026. </h3>
  9027. <p>
  9028. (<em>Appears on:</em>
  9029. <a href="#external-secrets.io/v1.ScalewayProvider">ScalewayProvider</a>)
  9030. </p>
  9031. <p>
  9032. </p>
  9033. <table>
  9034. <thead>
  9035. <tr>
  9036. <th>Field</th>
  9037. <th>Description</th>
  9038. </tr>
  9039. </thead>
  9040. <tbody>
  9041. <tr>
  9042. <td>
  9043. <code>value</code></br>
  9044. <em>
  9045. string
  9046. </em>
  9047. </td>
  9048. <td>
  9049. <em>(Optional)</em>
  9050. <p>Value can be specified directly to set a value without using a secret.</p>
  9051. </td>
  9052. </tr>
  9053. <tr>
  9054. <td>
  9055. <code>secretRef</code></br>
  9056. <em>
  9057. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9058. External Secrets meta/v1.SecretKeySelector
  9059. </a>
  9060. </em>
  9061. </td>
  9062. <td>
  9063. <em>(Optional)</em>
  9064. <p>SecretRef references a key in a secret that will be used as value.</p>
  9065. </td>
  9066. </tr>
  9067. </tbody>
  9068. </table>
  9069. <h3 id="external-secrets.io/v1.SecretReference">SecretReference
  9070. </h3>
  9071. <p>
  9072. (<em>Appears on:</em>
  9073. <a href="#external-secrets.io/v1.AwsCredentialsConfig">AwsCredentialsConfig</a>)
  9074. </p>
  9075. <p>
  9076. <p>SecretReference holds the details of a secret.</p>
  9077. </p>
  9078. <table>
  9079. <thead>
  9080. <tr>
  9081. <th>Field</th>
  9082. <th>Description</th>
  9083. </tr>
  9084. </thead>
  9085. <tbody>
  9086. <tr>
  9087. <td>
  9088. <code>name</code></br>
  9089. <em>
  9090. string
  9091. </em>
  9092. </td>
  9093. <td>
  9094. <p>name of the secret.</p>
  9095. </td>
  9096. </tr>
  9097. <tr>
  9098. <td>
  9099. <code>namespace</code></br>
  9100. <em>
  9101. string
  9102. </em>
  9103. </td>
  9104. <td>
  9105. <p>namespace in which the secret exists. If empty, secret will looked up in local namespace.</p>
  9106. </td>
  9107. </tr>
  9108. </tbody>
  9109. </table>
  9110. <h3 id="external-secrets.io/v1.SecretServerProvider">SecretServerProvider
  9111. </h3>
  9112. <p>
  9113. (<em>Appears on:</em>
  9114. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  9115. </p>
  9116. <p>
  9117. <p>See <a href="https://github.com/DelineaXPM/tss-sdk-go/blob/main/server/server.go">https://github.com/DelineaXPM/tss-sdk-go/blob/main/server/server.go</a>.</p>
  9118. </p>
  9119. <table>
  9120. <thead>
  9121. <tr>
  9122. <th>Field</th>
  9123. <th>Description</th>
  9124. </tr>
  9125. </thead>
  9126. <tbody>
  9127. <tr>
  9128. <td>
  9129. <code>username</code></br>
  9130. <em>
  9131. <a href="#external-secrets.io/v1.SecretServerProviderRef">
  9132. SecretServerProviderRef
  9133. </a>
  9134. </em>
  9135. </td>
  9136. <td>
  9137. <p>Username is the secret server account username.</p>
  9138. </td>
  9139. </tr>
  9140. <tr>
  9141. <td>
  9142. <code>password</code></br>
  9143. <em>
  9144. <a href="#external-secrets.io/v1.SecretServerProviderRef">
  9145. SecretServerProviderRef
  9146. </a>
  9147. </em>
  9148. </td>
  9149. <td>
  9150. <p>Password is the secret server account password.</p>
  9151. </td>
  9152. </tr>
  9153. <tr>
  9154. <td>
  9155. <code>serverURL</code></br>
  9156. <em>
  9157. string
  9158. </em>
  9159. </td>
  9160. <td>
  9161. <p>ServerURL
  9162. URL to your secret server installation</p>
  9163. </td>
  9164. </tr>
  9165. </tbody>
  9166. </table>
  9167. <h3 id="external-secrets.io/v1.SecretServerProviderRef">SecretServerProviderRef
  9168. </h3>
  9169. <p>
  9170. (<em>Appears on:</em>
  9171. <a href="#external-secrets.io/v1.SecretServerProvider">SecretServerProvider</a>)
  9172. </p>
  9173. <p>
  9174. </p>
  9175. <table>
  9176. <thead>
  9177. <tr>
  9178. <th>Field</th>
  9179. <th>Description</th>
  9180. </tr>
  9181. </thead>
  9182. <tbody>
  9183. <tr>
  9184. <td>
  9185. <code>value</code></br>
  9186. <em>
  9187. string
  9188. </em>
  9189. </td>
  9190. <td>
  9191. <em>(Optional)</em>
  9192. <p>Value can be specified directly to set a value without using a secret.</p>
  9193. </td>
  9194. </tr>
  9195. <tr>
  9196. <td>
  9197. <code>secretRef</code></br>
  9198. <em>
  9199. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9200. External Secrets meta/v1.SecretKeySelector
  9201. </a>
  9202. </em>
  9203. </td>
  9204. <td>
  9205. <em>(Optional)</em>
  9206. <p>SecretRef references a key in a secret that will be used as value.</p>
  9207. </td>
  9208. </tr>
  9209. </tbody>
  9210. </table>
  9211. <h3 id="external-secrets.io/v1.SecretStore">SecretStore
  9212. </h3>
  9213. <p>
  9214. <p>SecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  9215. </p>
  9216. <table>
  9217. <thead>
  9218. <tr>
  9219. <th>Field</th>
  9220. <th>Description</th>
  9221. </tr>
  9222. </thead>
  9223. <tbody>
  9224. <tr>
  9225. <td>
  9226. <code>metadata</code></br>
  9227. <em>
  9228. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  9229. Kubernetes meta/v1.ObjectMeta
  9230. </a>
  9231. </em>
  9232. </td>
  9233. <td>
  9234. Refer to the Kubernetes API documentation for the fields of the
  9235. <code>metadata</code> field.
  9236. </td>
  9237. </tr>
  9238. <tr>
  9239. <td>
  9240. <code>spec</code></br>
  9241. <em>
  9242. <a href="#external-secrets.io/v1.SecretStoreSpec">
  9243. SecretStoreSpec
  9244. </a>
  9245. </em>
  9246. </td>
  9247. <td>
  9248. <br/>
  9249. <br/>
  9250. <table>
  9251. <tr>
  9252. <td>
  9253. <code>controller</code></br>
  9254. <em>
  9255. string
  9256. </em>
  9257. </td>
  9258. <td>
  9259. <em>(Optional)</em>
  9260. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  9261. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  9262. </td>
  9263. </tr>
  9264. <tr>
  9265. <td>
  9266. <code>provider</code></br>
  9267. <em>
  9268. <a href="#external-secrets.io/v1.SecretStoreProvider">
  9269. SecretStoreProvider
  9270. </a>
  9271. </em>
  9272. </td>
  9273. <td>
  9274. <p>Used to configure the provider. Only one provider may be set</p>
  9275. </td>
  9276. </tr>
  9277. <tr>
  9278. <td>
  9279. <code>retrySettings</code></br>
  9280. <em>
  9281. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  9282. SecretStoreRetrySettings
  9283. </a>
  9284. </em>
  9285. </td>
  9286. <td>
  9287. <em>(Optional)</em>
  9288. <p>Used to configure http retries if failed</p>
  9289. </td>
  9290. </tr>
  9291. <tr>
  9292. <td>
  9293. <code>refreshInterval</code></br>
  9294. <em>
  9295. int
  9296. </em>
  9297. </td>
  9298. <td>
  9299. <em>(Optional)</em>
  9300. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  9301. </td>
  9302. </tr>
  9303. <tr>
  9304. <td>
  9305. <code>conditions</code></br>
  9306. <em>
  9307. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  9308. []ClusterSecretStoreCondition
  9309. </a>
  9310. </em>
  9311. </td>
  9312. <td>
  9313. <em>(Optional)</em>
  9314. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  9315. </td>
  9316. </tr>
  9317. </table>
  9318. </td>
  9319. </tr>
  9320. <tr>
  9321. <td>
  9322. <code>status</code></br>
  9323. <em>
  9324. <a href="#external-secrets.io/v1.SecretStoreStatus">
  9325. SecretStoreStatus
  9326. </a>
  9327. </em>
  9328. </td>
  9329. <td>
  9330. </td>
  9331. </tr>
  9332. </tbody>
  9333. </table>
  9334. <h3 id="external-secrets.io/v1.SecretStoreCapabilities">SecretStoreCapabilities
  9335. (<code>string</code> alias)</p></h3>
  9336. <p>
  9337. (<em>Appears on:</em>
  9338. <a href="#external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus</a>)
  9339. </p>
  9340. <p>
  9341. <p>SecretStoreCapabilities defines the possible operations a SecretStore can do.</p>
  9342. </p>
  9343. <table>
  9344. <thead>
  9345. <tr>
  9346. <th>Value</th>
  9347. <th>Description</th>
  9348. </tr>
  9349. </thead>
  9350. <tbody><tr><td><p>&#34;ReadOnly&#34;</p></td>
  9351. <td></td>
  9352. </tr><tr><td><p>&#34;ReadWrite&#34;</p></td>
  9353. <td></td>
  9354. </tr><tr><td><p>&#34;WriteOnly&#34;</p></td>
  9355. <td></td>
  9356. </tr></tbody>
  9357. </table>
  9358. <h3 id="external-secrets.io/v1.SecretStoreConditionType">SecretStoreConditionType
  9359. (<code>string</code> alias)</p></h3>
  9360. <p>
  9361. (<em>Appears on:</em>
  9362. <a href="#external-secrets.io/v1.SecretStoreStatusCondition">SecretStoreStatusCondition</a>)
  9363. </p>
  9364. <p>
  9365. </p>
  9366. <table>
  9367. <thead>
  9368. <tr>
  9369. <th>Value</th>
  9370. <th>Description</th>
  9371. </tr>
  9372. </thead>
  9373. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  9374. <td></td>
  9375. </tr></tbody>
  9376. </table>
  9377. <h3 id="external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider
  9378. </h3>
  9379. <p>
  9380. (<em>Appears on:</em>
  9381. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  9382. </p>
  9383. <p>
  9384. <p>SecretStoreProvider contains the provider-specific configuration.</p>
  9385. </p>
  9386. <table>
  9387. <thead>
  9388. <tr>
  9389. <th>Field</th>
  9390. <th>Description</th>
  9391. </tr>
  9392. </thead>
  9393. <tbody>
  9394. <tr>
  9395. <td>
  9396. <code>aws</code></br>
  9397. <em>
  9398. <a href="#external-secrets.io/v1.AWSProvider">
  9399. AWSProvider
  9400. </a>
  9401. </em>
  9402. </td>
  9403. <td>
  9404. <em>(Optional)</em>
  9405. <p>AWS configures this store to sync secrets using AWS Secret Manager provider</p>
  9406. </td>
  9407. </tr>
  9408. <tr>
  9409. <td>
  9410. <code>azurekv</code></br>
  9411. <em>
  9412. <a href="#external-secrets.io/v1.AzureKVProvider">
  9413. AzureKVProvider
  9414. </a>
  9415. </em>
  9416. </td>
  9417. <td>
  9418. <em>(Optional)</em>
  9419. <p>AzureKV configures this store to sync secrets using Azure Key Vault provider</p>
  9420. </td>
  9421. </tr>
  9422. <tr>
  9423. <td>
  9424. <code>akeyless</code></br>
  9425. <em>
  9426. <a href="#external-secrets.io/v1.AkeylessProvider">
  9427. AkeylessProvider
  9428. </a>
  9429. </em>
  9430. </td>
  9431. <td>
  9432. <em>(Optional)</em>
  9433. <p>Akeyless configures this store to sync secrets using Akeyless Vault provider</p>
  9434. </td>
  9435. </tr>
  9436. <tr>
  9437. <td>
  9438. <code>bitwardensecretsmanager</code></br>
  9439. <em>
  9440. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">
  9441. BitwardenSecretsManagerProvider
  9442. </a>
  9443. </em>
  9444. </td>
  9445. <td>
  9446. <em>(Optional)</em>
  9447. <p>BitwardenSecretsManager configures this store to sync secrets using BitwardenSecretsManager provider</p>
  9448. </td>
  9449. </tr>
  9450. <tr>
  9451. <td>
  9452. <code>vault</code></br>
  9453. <em>
  9454. <a href="#external-secrets.io/v1.VaultProvider">
  9455. VaultProvider
  9456. </a>
  9457. </em>
  9458. </td>
  9459. <td>
  9460. <em>(Optional)</em>
  9461. <p>Vault configures this store to sync secrets using Hashi provider</p>
  9462. </td>
  9463. </tr>
  9464. <tr>
  9465. <td>
  9466. <code>gcpsm</code></br>
  9467. <em>
  9468. <a href="#external-secrets.io/v1.GCPSMProvider">
  9469. GCPSMProvider
  9470. </a>
  9471. </em>
  9472. </td>
  9473. <td>
  9474. <em>(Optional)</em>
  9475. <p>GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider</p>
  9476. </td>
  9477. </tr>
  9478. <tr>
  9479. <td>
  9480. <code>oracle</code></br>
  9481. <em>
  9482. <a href="#external-secrets.io/v1.OracleProvider">
  9483. OracleProvider
  9484. </a>
  9485. </em>
  9486. </td>
  9487. <td>
  9488. <em>(Optional)</em>
  9489. <p>Oracle configures this store to sync secrets using Oracle Vault provider</p>
  9490. </td>
  9491. </tr>
  9492. <tr>
  9493. <td>
  9494. <code>ibm</code></br>
  9495. <em>
  9496. <a href="#external-secrets.io/v1.IBMProvider">
  9497. IBMProvider
  9498. </a>
  9499. </em>
  9500. </td>
  9501. <td>
  9502. <em>(Optional)</em>
  9503. <p>IBM configures this store to sync secrets using IBM Cloud provider</p>
  9504. </td>
  9505. </tr>
  9506. <tr>
  9507. <td>
  9508. <code>yandexcertificatemanager</code></br>
  9509. <em>
  9510. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">
  9511. YandexCertificateManagerProvider
  9512. </a>
  9513. </em>
  9514. </td>
  9515. <td>
  9516. <em>(Optional)</em>
  9517. <p>YandexCertificateManager configures this store to sync secrets using Yandex Certificate Manager provider</p>
  9518. </td>
  9519. </tr>
  9520. <tr>
  9521. <td>
  9522. <code>yandexlockbox</code></br>
  9523. <em>
  9524. <a href="#external-secrets.io/v1.YandexLockboxProvider">
  9525. YandexLockboxProvider
  9526. </a>
  9527. </em>
  9528. </td>
  9529. <td>
  9530. <em>(Optional)</em>
  9531. <p>YandexLockbox configures this store to sync secrets using Yandex Lockbox provider</p>
  9532. </td>
  9533. </tr>
  9534. <tr>
  9535. <td>
  9536. <code>github</code></br>
  9537. <em>
  9538. <a href="#external-secrets.io/v1.GithubProvider">
  9539. GithubProvider
  9540. </a>
  9541. </em>
  9542. </td>
  9543. <td>
  9544. <em>(Optional)</em>
  9545. <p>Github configures this store to push Github Action secrets using Github API provider</p>
  9546. </td>
  9547. </tr>
  9548. <tr>
  9549. <td>
  9550. <code>gitlab</code></br>
  9551. <em>
  9552. <a href="#external-secrets.io/v1.GitlabProvider">
  9553. GitlabProvider
  9554. </a>
  9555. </em>
  9556. </td>
  9557. <td>
  9558. <em>(Optional)</em>
  9559. <p>GitLab configures this store to sync secrets using GitLab Variables provider</p>
  9560. </td>
  9561. </tr>
  9562. <tr>
  9563. <td>
  9564. <code>alibaba</code></br>
  9565. <em>
  9566. <a href="#external-secrets.io/v1.AlibabaProvider">
  9567. AlibabaProvider
  9568. </a>
  9569. </em>
  9570. </td>
  9571. <td>
  9572. <em>(Optional)</em>
  9573. <p>Alibaba configures this store to sync secrets using Alibaba Cloud provider</p>
  9574. </td>
  9575. </tr>
  9576. <tr>
  9577. <td>
  9578. <code>onepassword</code></br>
  9579. <em>
  9580. <a href="#external-secrets.io/v1.OnePasswordProvider">
  9581. OnePasswordProvider
  9582. </a>
  9583. </em>
  9584. </td>
  9585. <td>
  9586. <em>(Optional)</em>
  9587. <p>OnePassword configures this store to sync secrets using the 1Password Cloud provider</p>
  9588. </td>
  9589. </tr>
  9590. <tr>
  9591. <td>
  9592. <code>onepasswordSDK</code></br>
  9593. <em>
  9594. <a href="#external-secrets.io/v1.OnePasswordSDKProvider">
  9595. OnePasswordSDKProvider
  9596. </a>
  9597. </em>
  9598. </td>
  9599. <td>
  9600. <em>(Optional)</em>
  9601. <p>OnePasswordSDK configures this store to use 1Password&rsquo;s new Go SDK to sync secrets.</p>
  9602. </td>
  9603. </tr>
  9604. <tr>
  9605. <td>
  9606. <code>webhook</code></br>
  9607. <em>
  9608. <a href="#external-secrets.io/v1.WebhookProvider">
  9609. WebhookProvider
  9610. </a>
  9611. </em>
  9612. </td>
  9613. <td>
  9614. <em>(Optional)</em>
  9615. <p>Webhook configures this store to sync secrets using a generic templated webhook</p>
  9616. </td>
  9617. </tr>
  9618. <tr>
  9619. <td>
  9620. <code>kubernetes</code></br>
  9621. <em>
  9622. <a href="#external-secrets.io/v1.KubernetesProvider">
  9623. KubernetesProvider
  9624. </a>
  9625. </em>
  9626. </td>
  9627. <td>
  9628. <em>(Optional)</em>
  9629. <p>Kubernetes configures this store to sync secrets using a Kubernetes cluster provider</p>
  9630. </td>
  9631. </tr>
  9632. <tr>
  9633. <td>
  9634. <code>fake</code></br>
  9635. <em>
  9636. <a href="#external-secrets.io/v1.FakeProvider">
  9637. FakeProvider
  9638. </a>
  9639. </em>
  9640. </td>
  9641. <td>
  9642. <em>(Optional)</em>
  9643. <p>Fake configures a store with static key/value pairs</p>
  9644. </td>
  9645. </tr>
  9646. <tr>
  9647. <td>
  9648. <code>senhasegura</code></br>
  9649. <em>
  9650. <a href="#external-secrets.io/v1.SenhaseguraProvider">
  9651. SenhaseguraProvider
  9652. </a>
  9653. </em>
  9654. </td>
  9655. <td>
  9656. <em>(Optional)</em>
  9657. <p>Senhasegura configures this store to sync secrets using senhasegura provider</p>
  9658. </td>
  9659. </tr>
  9660. <tr>
  9661. <td>
  9662. <code>scaleway</code></br>
  9663. <em>
  9664. <a href="#external-secrets.io/v1.ScalewayProvider">
  9665. ScalewayProvider
  9666. </a>
  9667. </em>
  9668. </td>
  9669. <td>
  9670. <em>(Optional)</em>
  9671. <p>Scaleway</p>
  9672. </td>
  9673. </tr>
  9674. <tr>
  9675. <td>
  9676. <code>doppler</code></br>
  9677. <em>
  9678. <a href="#external-secrets.io/v1.DopplerProvider">
  9679. DopplerProvider
  9680. </a>
  9681. </em>
  9682. </td>
  9683. <td>
  9684. <em>(Optional)</em>
  9685. <p>Doppler configures this store to sync secrets using the Doppler provider</p>
  9686. </td>
  9687. </tr>
  9688. <tr>
  9689. <td>
  9690. <code>previder</code></br>
  9691. <em>
  9692. <a href="#external-secrets.io/v1.PreviderProvider">
  9693. PreviderProvider
  9694. </a>
  9695. </em>
  9696. </td>
  9697. <td>
  9698. <em>(Optional)</em>
  9699. <p>Previder configures this store to sync secrets using the Previder provider</p>
  9700. </td>
  9701. </tr>
  9702. <tr>
  9703. <td>
  9704. <code>onboardbase</code></br>
  9705. <em>
  9706. <a href="#external-secrets.io/v1.OnboardbaseProvider">
  9707. OnboardbaseProvider
  9708. </a>
  9709. </em>
  9710. </td>
  9711. <td>
  9712. <em>(Optional)</em>
  9713. <p>Onboardbase configures this store to sync secrets using the Onboardbase provider</p>
  9714. </td>
  9715. </tr>
  9716. <tr>
  9717. <td>
  9718. <code>keepersecurity</code></br>
  9719. <em>
  9720. <a href="#external-secrets.io/v1.KeeperSecurityProvider">
  9721. KeeperSecurityProvider
  9722. </a>
  9723. </em>
  9724. </td>
  9725. <td>
  9726. <em>(Optional)</em>
  9727. <p>KeeperSecurity configures this store to sync secrets using the KeeperSecurity provider</p>
  9728. </td>
  9729. </tr>
  9730. <tr>
  9731. <td>
  9732. <code>conjur</code></br>
  9733. <em>
  9734. <a href="#external-secrets.io/v1.ConjurProvider">
  9735. ConjurProvider
  9736. </a>
  9737. </em>
  9738. </td>
  9739. <td>
  9740. <em>(Optional)</em>
  9741. <p>Conjur configures this store to sync secrets using conjur provider</p>
  9742. </td>
  9743. </tr>
  9744. <tr>
  9745. <td>
  9746. <code>delinea</code></br>
  9747. <em>
  9748. <a href="#external-secrets.io/v1.DelineaProvider">
  9749. DelineaProvider
  9750. </a>
  9751. </em>
  9752. </td>
  9753. <td>
  9754. <em>(Optional)</em>
  9755. <p>Delinea DevOps Secrets Vault
  9756. <a href="https://docs.delinea.com/online-help/products/devops-secrets-vault/current">https://docs.delinea.com/online-help/products/devops-secrets-vault/current</a></p>
  9757. </td>
  9758. </tr>
  9759. <tr>
  9760. <td>
  9761. <code>secretserver</code></br>
  9762. <em>
  9763. <a href="#external-secrets.io/v1.SecretServerProvider">
  9764. SecretServerProvider
  9765. </a>
  9766. </em>
  9767. </td>
  9768. <td>
  9769. <em>(Optional)</em>
  9770. <p>SecretServer configures this store to sync secrets using SecretServer provider
  9771. <a href="https://docs.delinea.com/online-help/secret-server/start.htm">https://docs.delinea.com/online-help/secret-server/start.htm</a></p>
  9772. </td>
  9773. </tr>
  9774. <tr>
  9775. <td>
  9776. <code>chef</code></br>
  9777. <em>
  9778. <a href="#external-secrets.io/v1.ChefProvider">
  9779. ChefProvider
  9780. </a>
  9781. </em>
  9782. </td>
  9783. <td>
  9784. <em>(Optional)</em>
  9785. <p>Chef configures this store to sync secrets with chef server</p>
  9786. </td>
  9787. </tr>
  9788. <tr>
  9789. <td>
  9790. <code>pulumi</code></br>
  9791. <em>
  9792. <a href="#external-secrets.io/v1.PulumiProvider">
  9793. PulumiProvider
  9794. </a>
  9795. </em>
  9796. </td>
  9797. <td>
  9798. <em>(Optional)</em>
  9799. <p>Pulumi configures this store to sync secrets using the Pulumi provider</p>
  9800. </td>
  9801. </tr>
  9802. <tr>
  9803. <td>
  9804. <code>fortanix</code></br>
  9805. <em>
  9806. <a href="#external-secrets.io/v1.FortanixProvider">
  9807. FortanixProvider
  9808. </a>
  9809. </em>
  9810. </td>
  9811. <td>
  9812. <em>(Optional)</em>
  9813. <p>Fortanix configures this store to sync secrets using the Fortanix provider</p>
  9814. </td>
  9815. </tr>
  9816. <tr>
  9817. <td>
  9818. <code>passworddepot</code></br>
  9819. <em>
  9820. <a href="#external-secrets.io/v1.PasswordDepotProvider">
  9821. PasswordDepotProvider
  9822. </a>
  9823. </em>
  9824. </td>
  9825. <td>
  9826. <em>(Optional)</em>
  9827. </td>
  9828. </tr>
  9829. <tr>
  9830. <td>
  9831. <code>passbolt</code></br>
  9832. <em>
  9833. <a href="#external-secrets.io/v1.PassboltProvider">
  9834. PassboltProvider
  9835. </a>
  9836. </em>
  9837. </td>
  9838. <td>
  9839. <em>(Optional)</em>
  9840. </td>
  9841. </tr>
  9842. <tr>
  9843. <td>
  9844. <code>device42</code></br>
  9845. <em>
  9846. <a href="#external-secrets.io/v1.Device42Provider">
  9847. Device42Provider
  9848. </a>
  9849. </em>
  9850. </td>
  9851. <td>
  9852. <em>(Optional)</em>
  9853. <p>Device42 configures this store to sync secrets using the Device42 provider</p>
  9854. </td>
  9855. </tr>
  9856. <tr>
  9857. <td>
  9858. <code>infisical</code></br>
  9859. <em>
  9860. <a href="#external-secrets.io/v1.InfisicalProvider">
  9861. InfisicalProvider
  9862. </a>
  9863. </em>
  9864. </td>
  9865. <td>
  9866. <em>(Optional)</em>
  9867. <p>Infisical configures this store to sync secrets using the Infisical provider</p>
  9868. </td>
  9869. </tr>
  9870. <tr>
  9871. <td>
  9872. <code>beyondtrust</code></br>
  9873. <em>
  9874. <a href="#external-secrets.io/v1.BeyondtrustProvider">
  9875. BeyondtrustProvider
  9876. </a>
  9877. </em>
  9878. </td>
  9879. <td>
  9880. <em>(Optional)</em>
  9881. <p>Beyondtrust configures this store to sync secrets using Password Safe provider.</p>
  9882. </td>
  9883. </tr>
  9884. <tr>
  9885. <td>
  9886. <code>cloudrusm</code></br>
  9887. <em>
  9888. <a href="#external-secrets.io/v1.CloudruSMProvider">
  9889. CloudruSMProvider
  9890. </a>
  9891. </em>
  9892. </td>
  9893. <td>
  9894. <em>(Optional)</em>
  9895. <p>CloudruSM configures this store to sync secrets using the Cloud.ru Secret Manager provider</p>
  9896. </td>
  9897. </tr>
  9898. </tbody>
  9899. </table>
  9900. <h3 id="external-secrets.io/v1.SecretStoreRef">SecretStoreRef
  9901. </h3>
  9902. <p>
  9903. (<em>Appears on:</em>
  9904. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>,
  9905. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  9906. <a href="#external-secrets.io/v1.StoreSourceRef">StoreSourceRef</a>)
  9907. </p>
  9908. <p>
  9909. <p>SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.</p>
  9910. </p>
  9911. <table>
  9912. <thead>
  9913. <tr>
  9914. <th>Field</th>
  9915. <th>Description</th>
  9916. </tr>
  9917. </thead>
  9918. <tbody>
  9919. <tr>
  9920. <td>
  9921. <code>name</code></br>
  9922. <em>
  9923. string
  9924. </em>
  9925. </td>
  9926. <td>
  9927. <p>Name of the SecretStore resource</p>
  9928. </td>
  9929. </tr>
  9930. <tr>
  9931. <td>
  9932. <code>kind</code></br>
  9933. <em>
  9934. string
  9935. </em>
  9936. </td>
  9937. <td>
  9938. <em>(Optional)</em>
  9939. <p>Kind of the SecretStore resource (SecretStore or ClusterSecretStore)
  9940. Defaults to <code>SecretStore</code></p>
  9941. </td>
  9942. </tr>
  9943. </tbody>
  9944. </table>
  9945. <h3 id="external-secrets.io/v1.SecretStoreRetrySettings">SecretStoreRetrySettings
  9946. </h3>
  9947. <p>
  9948. (<em>Appears on:</em>
  9949. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  9950. </p>
  9951. <p>
  9952. </p>
  9953. <table>
  9954. <thead>
  9955. <tr>
  9956. <th>Field</th>
  9957. <th>Description</th>
  9958. </tr>
  9959. </thead>
  9960. <tbody>
  9961. <tr>
  9962. <td>
  9963. <code>maxRetries</code></br>
  9964. <em>
  9965. int32
  9966. </em>
  9967. </td>
  9968. <td>
  9969. </td>
  9970. </tr>
  9971. <tr>
  9972. <td>
  9973. <code>retryInterval</code></br>
  9974. <em>
  9975. string
  9976. </em>
  9977. </td>
  9978. <td>
  9979. </td>
  9980. </tr>
  9981. </tbody>
  9982. </table>
  9983. <h3 id="external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec
  9984. </h3>
  9985. <p>
  9986. (<em>Appears on:</em>
  9987. <a href="#external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore</a>,
  9988. <a href="#external-secrets.io/v1.SecretStore">SecretStore</a>)
  9989. </p>
  9990. <p>
  9991. <p>SecretStoreSpec defines the desired state of SecretStore.</p>
  9992. </p>
  9993. <table>
  9994. <thead>
  9995. <tr>
  9996. <th>Field</th>
  9997. <th>Description</th>
  9998. </tr>
  9999. </thead>
  10000. <tbody>
  10001. <tr>
  10002. <td>
  10003. <code>controller</code></br>
  10004. <em>
  10005. string
  10006. </em>
  10007. </td>
  10008. <td>
  10009. <em>(Optional)</em>
  10010. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  10011. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  10012. </td>
  10013. </tr>
  10014. <tr>
  10015. <td>
  10016. <code>provider</code></br>
  10017. <em>
  10018. <a href="#external-secrets.io/v1.SecretStoreProvider">
  10019. SecretStoreProvider
  10020. </a>
  10021. </em>
  10022. </td>
  10023. <td>
  10024. <p>Used to configure the provider. Only one provider may be set</p>
  10025. </td>
  10026. </tr>
  10027. <tr>
  10028. <td>
  10029. <code>retrySettings</code></br>
  10030. <em>
  10031. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  10032. SecretStoreRetrySettings
  10033. </a>
  10034. </em>
  10035. </td>
  10036. <td>
  10037. <em>(Optional)</em>
  10038. <p>Used to configure http retries if failed</p>
  10039. </td>
  10040. </tr>
  10041. <tr>
  10042. <td>
  10043. <code>refreshInterval</code></br>
  10044. <em>
  10045. int
  10046. </em>
  10047. </td>
  10048. <td>
  10049. <em>(Optional)</em>
  10050. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  10051. </td>
  10052. </tr>
  10053. <tr>
  10054. <td>
  10055. <code>conditions</code></br>
  10056. <em>
  10057. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  10058. []ClusterSecretStoreCondition
  10059. </a>
  10060. </em>
  10061. </td>
  10062. <td>
  10063. <em>(Optional)</em>
  10064. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  10065. </td>
  10066. </tr>
  10067. </tbody>
  10068. </table>
  10069. <h3 id="external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus
  10070. </h3>
  10071. <p>
  10072. (<em>Appears on:</em>
  10073. <a href="#external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore</a>,
  10074. <a href="#external-secrets.io/v1.SecretStore">SecretStore</a>)
  10075. </p>
  10076. <p>
  10077. <p>SecretStoreStatus defines the observed state of the SecretStore.</p>
  10078. </p>
  10079. <table>
  10080. <thead>
  10081. <tr>
  10082. <th>Field</th>
  10083. <th>Description</th>
  10084. </tr>
  10085. </thead>
  10086. <tbody>
  10087. <tr>
  10088. <td>
  10089. <code>conditions</code></br>
  10090. <em>
  10091. <a href="#external-secrets.io/v1.SecretStoreStatusCondition">
  10092. []SecretStoreStatusCondition
  10093. </a>
  10094. </em>
  10095. </td>
  10096. <td>
  10097. <em>(Optional)</em>
  10098. </td>
  10099. </tr>
  10100. <tr>
  10101. <td>
  10102. <code>capabilities</code></br>
  10103. <em>
  10104. <a href="#external-secrets.io/v1.SecretStoreCapabilities">
  10105. SecretStoreCapabilities
  10106. </a>
  10107. </em>
  10108. </td>
  10109. <td>
  10110. <em>(Optional)</em>
  10111. </td>
  10112. </tr>
  10113. </tbody>
  10114. </table>
  10115. <h3 id="external-secrets.io/v1.SecretStoreStatusCondition">SecretStoreStatusCondition
  10116. </h3>
  10117. <p>
  10118. (<em>Appears on:</em>
  10119. <a href="#external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus</a>)
  10120. </p>
  10121. <p>
  10122. </p>
  10123. <table>
  10124. <thead>
  10125. <tr>
  10126. <th>Field</th>
  10127. <th>Description</th>
  10128. </tr>
  10129. </thead>
  10130. <tbody>
  10131. <tr>
  10132. <td>
  10133. <code>type</code></br>
  10134. <em>
  10135. <a href="#external-secrets.io/v1.SecretStoreConditionType">
  10136. SecretStoreConditionType
  10137. </a>
  10138. </em>
  10139. </td>
  10140. <td>
  10141. </td>
  10142. </tr>
  10143. <tr>
  10144. <td>
  10145. <code>status</code></br>
  10146. <em>
  10147. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  10148. Kubernetes core/v1.ConditionStatus
  10149. </a>
  10150. </em>
  10151. </td>
  10152. <td>
  10153. </td>
  10154. </tr>
  10155. <tr>
  10156. <td>
  10157. <code>reason</code></br>
  10158. <em>
  10159. string
  10160. </em>
  10161. </td>
  10162. <td>
  10163. <em>(Optional)</em>
  10164. </td>
  10165. </tr>
  10166. <tr>
  10167. <td>
  10168. <code>message</code></br>
  10169. <em>
  10170. string
  10171. </em>
  10172. </td>
  10173. <td>
  10174. <em>(Optional)</em>
  10175. </td>
  10176. </tr>
  10177. <tr>
  10178. <td>
  10179. <code>lastTransitionTime</code></br>
  10180. <em>
  10181. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  10182. Kubernetes meta/v1.Time
  10183. </a>
  10184. </em>
  10185. </td>
  10186. <td>
  10187. <em>(Optional)</em>
  10188. </td>
  10189. </tr>
  10190. </tbody>
  10191. </table>
  10192. <h3 id="external-secrets.io/v1.SecretsClient">SecretsClient
  10193. </h3>
  10194. <p>
  10195. <p>SecretsClient provides access to secrets.</p>
  10196. </p>
  10197. <h3 id="external-secrets.io/v1.SecretsManager">SecretsManager
  10198. </h3>
  10199. <p>
  10200. (<em>Appears on:</em>
  10201. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  10202. </p>
  10203. <p>
  10204. <p>SecretsManager defines how the provider behaves when interacting with AWS
  10205. SecretsManager. Some of these settings are only applicable to controlling how
  10206. secrets are deleted, and hence only apply to PushSecret (and only when
  10207. deletionPolicy is set to Delete).</p>
  10208. </p>
  10209. <table>
  10210. <thead>
  10211. <tr>
  10212. <th>Field</th>
  10213. <th>Description</th>
  10214. </tr>
  10215. </thead>
  10216. <tbody>
  10217. <tr>
  10218. <td>
  10219. <code>forceDeleteWithoutRecovery</code></br>
  10220. <em>
  10221. bool
  10222. </em>
  10223. </td>
  10224. <td>
  10225. <em>(Optional)</em>
  10226. <p>Specifies whether to delete the secret without any recovery window. You
  10227. can&rsquo;t use both this parameter and RecoveryWindowInDays in the same call.
  10228. If you don&rsquo;t use either, then by default Secrets Manager uses a 30 day
  10229. recovery window.
  10230. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-ForceDeleteWithoutRecovery">https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-ForceDeleteWithoutRecovery</a></p>
  10231. </td>
  10232. </tr>
  10233. <tr>
  10234. <td>
  10235. <code>recoveryWindowInDays</code></br>
  10236. <em>
  10237. int64
  10238. </em>
  10239. </td>
  10240. <td>
  10241. <em>(Optional)</em>
  10242. <p>The number of days from 7 to 30 that Secrets Manager waits before
  10243. permanently deleting the secret. You can&rsquo;t use both this parameter and
  10244. ForceDeleteWithoutRecovery in the same call. If you don&rsquo;t use either,
  10245. then by default Secrets Manager uses a 30 day recovery window.
  10246. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-RecoveryWindowInDays">https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-RecoveryWindowInDays</a></p>
  10247. </td>
  10248. </tr>
  10249. </tbody>
  10250. </table>
  10251. <h3 id="external-secrets.io/v1.SenhaseguraAuth">SenhaseguraAuth
  10252. </h3>
  10253. <p>
  10254. (<em>Appears on:</em>
  10255. <a href="#external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider</a>)
  10256. </p>
  10257. <p>
  10258. <p>SenhaseguraAuth tells the controller how to do auth in senhasegura.</p>
  10259. </p>
  10260. <table>
  10261. <thead>
  10262. <tr>
  10263. <th>Field</th>
  10264. <th>Description</th>
  10265. </tr>
  10266. </thead>
  10267. <tbody>
  10268. <tr>
  10269. <td>
  10270. <code>clientId</code></br>
  10271. <em>
  10272. string
  10273. </em>
  10274. </td>
  10275. <td>
  10276. </td>
  10277. </tr>
  10278. <tr>
  10279. <td>
  10280. <code>clientSecretSecretRef</code></br>
  10281. <em>
  10282. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10283. External Secrets meta/v1.SecretKeySelector
  10284. </a>
  10285. </em>
  10286. </td>
  10287. <td>
  10288. </td>
  10289. </tr>
  10290. </tbody>
  10291. </table>
  10292. <h3 id="external-secrets.io/v1.SenhaseguraModuleType">SenhaseguraModuleType
  10293. (<code>string</code> alias)</p></h3>
  10294. <p>
  10295. (<em>Appears on:</em>
  10296. <a href="#external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider</a>)
  10297. </p>
  10298. <p>
  10299. <p>SenhaseguraModuleType enum defines senhasegura target module to fetch secrets</p>
  10300. </p>
  10301. <table>
  10302. <thead>
  10303. <tr>
  10304. <th>Value</th>
  10305. <th>Description</th>
  10306. </tr>
  10307. </thead>
  10308. <tbody><tr><td><p>&#34;DSM&#34;</p></td>
  10309. <td><pre><code> SenhaseguraModuleDSM is the senhasegura DevOps Secrets Management module
  10310. see: https://senhasegura.com/devops
  10311. </code></pre>
  10312. </td>
  10313. </tr></tbody>
  10314. </table>
  10315. <h3 id="external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider
  10316. </h3>
  10317. <p>
  10318. (<em>Appears on:</em>
  10319. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  10320. </p>
  10321. <p>
  10322. <p>SenhaseguraProvider setup a store to sync secrets with senhasegura.</p>
  10323. </p>
  10324. <table>
  10325. <thead>
  10326. <tr>
  10327. <th>Field</th>
  10328. <th>Description</th>
  10329. </tr>
  10330. </thead>
  10331. <tbody>
  10332. <tr>
  10333. <td>
  10334. <code>url</code></br>
  10335. <em>
  10336. string
  10337. </em>
  10338. </td>
  10339. <td>
  10340. <p>URL of senhasegura</p>
  10341. </td>
  10342. </tr>
  10343. <tr>
  10344. <td>
  10345. <code>module</code></br>
  10346. <em>
  10347. <a href="#external-secrets.io/v1.SenhaseguraModuleType">
  10348. SenhaseguraModuleType
  10349. </a>
  10350. </em>
  10351. </td>
  10352. <td>
  10353. <p>Module defines which senhasegura module should be used to get secrets</p>
  10354. </td>
  10355. </tr>
  10356. <tr>
  10357. <td>
  10358. <code>auth</code></br>
  10359. <em>
  10360. <a href="#external-secrets.io/v1.SenhaseguraAuth">
  10361. SenhaseguraAuth
  10362. </a>
  10363. </em>
  10364. </td>
  10365. <td>
  10366. <p>Auth defines parameters to authenticate in senhasegura</p>
  10367. </td>
  10368. </tr>
  10369. <tr>
  10370. <td>
  10371. <code>ignoreSslCertificate</code></br>
  10372. <em>
  10373. bool
  10374. </em>
  10375. </td>
  10376. <td>
  10377. <p>IgnoreSslCertificate defines if SSL certificate must be ignored</p>
  10378. </td>
  10379. </tr>
  10380. </tbody>
  10381. </table>
  10382. <h3 id="external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef
  10383. </h3>
  10384. <p>
  10385. (<em>Appears on:</em>
  10386. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  10387. </p>
  10388. <p>
  10389. <p>StoreGeneratorSourceRef allows you to override the source
  10390. from which the secret will be pulled from.
  10391. You can define at maximum one property.</p>
  10392. </p>
  10393. <table>
  10394. <thead>
  10395. <tr>
  10396. <th>Field</th>
  10397. <th>Description</th>
  10398. </tr>
  10399. </thead>
  10400. <tbody>
  10401. <tr>
  10402. <td>
  10403. <code>storeRef</code></br>
  10404. <em>
  10405. <a href="#external-secrets.io/v1.SecretStoreRef">
  10406. SecretStoreRef
  10407. </a>
  10408. </em>
  10409. </td>
  10410. <td>
  10411. <em>(Optional)</em>
  10412. </td>
  10413. </tr>
  10414. <tr>
  10415. <td>
  10416. <code>generatorRef</code></br>
  10417. <em>
  10418. <a href="#external-secrets.io/v1.GeneratorRef">
  10419. GeneratorRef
  10420. </a>
  10421. </em>
  10422. </td>
  10423. <td>
  10424. <em>(Optional)</em>
  10425. <p>GeneratorRef points to a generator custom resource.</p>
  10426. </td>
  10427. </tr>
  10428. </tbody>
  10429. </table>
  10430. <h3 id="external-secrets.io/v1.StoreSourceRef">StoreSourceRef
  10431. </h3>
  10432. <p>
  10433. (<em>Appears on:</em>
  10434. <a href="#external-secrets.io/v1.ExternalSecretData">ExternalSecretData</a>)
  10435. </p>
  10436. <p>
  10437. <p>StoreSourceRef allows you to override the SecretStore source
  10438. from which the secret will be pulled from.
  10439. You can define at maximum one property.</p>
  10440. </p>
  10441. <table>
  10442. <thead>
  10443. <tr>
  10444. <th>Field</th>
  10445. <th>Description</th>
  10446. </tr>
  10447. </thead>
  10448. <tbody>
  10449. <tr>
  10450. <td>
  10451. <code>storeRef</code></br>
  10452. <em>
  10453. <a href="#external-secrets.io/v1.SecretStoreRef">
  10454. SecretStoreRef
  10455. </a>
  10456. </em>
  10457. </td>
  10458. <td>
  10459. <em>(Optional)</em>
  10460. </td>
  10461. </tr>
  10462. <tr>
  10463. <td>
  10464. <code>generatorRef</code></br>
  10465. <em>
  10466. <a href="#external-secrets.io/v1.GeneratorRef">
  10467. GeneratorRef
  10468. </a>
  10469. </em>
  10470. </td>
  10471. <td>
  10472. <p>GeneratorRef points to a generator custom resource.</p>
  10473. <p>Deprecated: The generatorRef is not implemented in .data[].
  10474. this will be removed with v1.</p>
  10475. </td>
  10476. </tr>
  10477. </tbody>
  10478. </table>
  10479. <h3 id="external-secrets.io/v1.Tag">Tag
  10480. </h3>
  10481. <p>
  10482. </p>
  10483. <table>
  10484. <thead>
  10485. <tr>
  10486. <th>Field</th>
  10487. <th>Description</th>
  10488. </tr>
  10489. </thead>
  10490. <tbody>
  10491. <tr>
  10492. <td>
  10493. <code>key</code></br>
  10494. <em>
  10495. string
  10496. </em>
  10497. </td>
  10498. <td>
  10499. </td>
  10500. </tr>
  10501. <tr>
  10502. <td>
  10503. <code>value</code></br>
  10504. <em>
  10505. string
  10506. </em>
  10507. </td>
  10508. <td>
  10509. </td>
  10510. </tr>
  10511. </tbody>
  10512. </table>
  10513. <h3 id="external-secrets.io/v1.TemplateEngineVersion">TemplateEngineVersion
  10514. (<code>string</code> alias)</p></h3>
  10515. <p>
  10516. (<em>Appears on:</em>
  10517. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  10518. </p>
  10519. <p>
  10520. </p>
  10521. <table>
  10522. <thead>
  10523. <tr>
  10524. <th>Value</th>
  10525. <th>Description</th>
  10526. </tr>
  10527. </thead>
  10528. <tbody><tr><td><p>&#34;v2&#34;</p></td>
  10529. <td></td>
  10530. </tr></tbody>
  10531. </table>
  10532. <h3 id="external-secrets.io/v1.TemplateFrom">TemplateFrom
  10533. </h3>
  10534. <p>
  10535. (<em>Appears on:</em>
  10536. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  10537. </p>
  10538. <p>
  10539. </p>
  10540. <table>
  10541. <thead>
  10542. <tr>
  10543. <th>Field</th>
  10544. <th>Description</th>
  10545. </tr>
  10546. </thead>
  10547. <tbody>
  10548. <tr>
  10549. <td>
  10550. <code>configMap</code></br>
  10551. <em>
  10552. <a href="#external-secrets.io/v1.TemplateRef">
  10553. TemplateRef
  10554. </a>
  10555. </em>
  10556. </td>
  10557. <td>
  10558. </td>
  10559. </tr>
  10560. <tr>
  10561. <td>
  10562. <code>secret</code></br>
  10563. <em>
  10564. <a href="#external-secrets.io/v1.TemplateRef">
  10565. TemplateRef
  10566. </a>
  10567. </em>
  10568. </td>
  10569. <td>
  10570. </td>
  10571. </tr>
  10572. <tr>
  10573. <td>
  10574. <code>target</code></br>
  10575. <em>
  10576. <a href="#external-secrets.io/v1.TemplateTarget">
  10577. TemplateTarget
  10578. </a>
  10579. </em>
  10580. </td>
  10581. <td>
  10582. <em>(Optional)</em>
  10583. </td>
  10584. </tr>
  10585. <tr>
  10586. <td>
  10587. <code>literal</code></br>
  10588. <em>
  10589. string
  10590. </em>
  10591. </td>
  10592. <td>
  10593. <em>(Optional)</em>
  10594. </td>
  10595. </tr>
  10596. </tbody>
  10597. </table>
  10598. <h3 id="external-secrets.io/v1.TemplateMergePolicy">TemplateMergePolicy
  10599. (<code>string</code> alias)</p></h3>
  10600. <p>
  10601. (<em>Appears on:</em>
  10602. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  10603. </p>
  10604. <p>
  10605. </p>
  10606. <table>
  10607. <thead>
  10608. <tr>
  10609. <th>Value</th>
  10610. <th>Description</th>
  10611. </tr>
  10612. </thead>
  10613. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  10614. <td></td>
  10615. </tr><tr><td><p>&#34;Replace&#34;</p></td>
  10616. <td></td>
  10617. </tr></tbody>
  10618. </table>
  10619. <h3 id="external-secrets.io/v1.TemplateRef">TemplateRef
  10620. </h3>
  10621. <p>
  10622. (<em>Appears on:</em>
  10623. <a href="#external-secrets.io/v1.TemplateFrom">TemplateFrom</a>)
  10624. </p>
  10625. <p>
  10626. </p>
  10627. <table>
  10628. <thead>
  10629. <tr>
  10630. <th>Field</th>
  10631. <th>Description</th>
  10632. </tr>
  10633. </thead>
  10634. <tbody>
  10635. <tr>
  10636. <td>
  10637. <code>name</code></br>
  10638. <em>
  10639. string
  10640. </em>
  10641. </td>
  10642. <td>
  10643. <p>The name of the ConfigMap/Secret resource</p>
  10644. </td>
  10645. </tr>
  10646. <tr>
  10647. <td>
  10648. <code>items</code></br>
  10649. <em>
  10650. <a href="#external-secrets.io/v1.TemplateRefItem">
  10651. []TemplateRefItem
  10652. </a>
  10653. </em>
  10654. </td>
  10655. <td>
  10656. <p>A list of keys in the ConfigMap/Secret to use as templates for Secret data</p>
  10657. </td>
  10658. </tr>
  10659. </tbody>
  10660. </table>
  10661. <h3 id="external-secrets.io/v1.TemplateRefItem">TemplateRefItem
  10662. </h3>
  10663. <p>
  10664. (<em>Appears on:</em>
  10665. <a href="#external-secrets.io/v1.TemplateRef">TemplateRef</a>)
  10666. </p>
  10667. <p>
  10668. </p>
  10669. <table>
  10670. <thead>
  10671. <tr>
  10672. <th>Field</th>
  10673. <th>Description</th>
  10674. </tr>
  10675. </thead>
  10676. <tbody>
  10677. <tr>
  10678. <td>
  10679. <code>key</code></br>
  10680. <em>
  10681. string
  10682. </em>
  10683. </td>
  10684. <td>
  10685. <p>A key in the ConfigMap/Secret</p>
  10686. </td>
  10687. </tr>
  10688. <tr>
  10689. <td>
  10690. <code>templateAs</code></br>
  10691. <em>
  10692. <a href="#external-secrets.io/v1.TemplateScope">
  10693. TemplateScope
  10694. </a>
  10695. </em>
  10696. </td>
  10697. <td>
  10698. </td>
  10699. </tr>
  10700. </tbody>
  10701. </table>
  10702. <h3 id="external-secrets.io/v1.TemplateScope">TemplateScope
  10703. (<code>string</code> alias)</p></h3>
  10704. <p>
  10705. (<em>Appears on:</em>
  10706. <a href="#external-secrets.io/v1.TemplateRefItem">TemplateRefItem</a>)
  10707. </p>
  10708. <p>
  10709. </p>
  10710. <table>
  10711. <thead>
  10712. <tr>
  10713. <th>Value</th>
  10714. <th>Description</th>
  10715. </tr>
  10716. </thead>
  10717. <tbody><tr><td><p>&#34;KeysAndValues&#34;</p></td>
  10718. <td></td>
  10719. </tr><tr><td><p>&#34;Values&#34;</p></td>
  10720. <td></td>
  10721. </tr></tbody>
  10722. </table>
  10723. <h3 id="external-secrets.io/v1.TemplateTarget">TemplateTarget
  10724. (<code>string</code> alias)</p></h3>
  10725. <p>
  10726. (<em>Appears on:</em>
  10727. <a href="#external-secrets.io/v1.TemplateFrom">TemplateFrom</a>)
  10728. </p>
  10729. <p>
  10730. </p>
  10731. <table>
  10732. <thead>
  10733. <tr>
  10734. <th>Value</th>
  10735. <th>Description</th>
  10736. </tr>
  10737. </thead>
  10738. <tbody><tr><td><p>&#34;Annotations&#34;</p></td>
  10739. <td></td>
  10740. </tr><tr><td><p>&#34;Data&#34;</p></td>
  10741. <td></td>
  10742. </tr><tr><td><p>&#34;Labels&#34;</p></td>
  10743. <td></td>
  10744. </tr></tbody>
  10745. </table>
  10746. <h3 id="external-secrets.io/v1.TokenAuth">TokenAuth
  10747. </h3>
  10748. <p>
  10749. (<em>Appears on:</em>
  10750. <a href="#external-secrets.io/v1.KubernetesAuth">KubernetesAuth</a>)
  10751. </p>
  10752. <p>
  10753. </p>
  10754. <table>
  10755. <thead>
  10756. <tr>
  10757. <th>Field</th>
  10758. <th>Description</th>
  10759. </tr>
  10760. </thead>
  10761. <tbody>
  10762. <tr>
  10763. <td>
  10764. <code>bearerToken</code></br>
  10765. <em>
  10766. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10767. External Secrets meta/v1.SecretKeySelector
  10768. </a>
  10769. </em>
  10770. </td>
  10771. <td>
  10772. </td>
  10773. </tr>
  10774. </tbody>
  10775. </table>
  10776. <h3 id="external-secrets.io/v1.TokenAuthCredentials">TokenAuthCredentials
  10777. </h3>
  10778. <p>
  10779. (<em>Appears on:</em>
  10780. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  10781. </p>
  10782. <p>
  10783. </p>
  10784. <table>
  10785. <thead>
  10786. <tr>
  10787. <th>Field</th>
  10788. <th>Description</th>
  10789. </tr>
  10790. </thead>
  10791. <tbody>
  10792. <tr>
  10793. <td>
  10794. <code>accessToken</code></br>
  10795. <em>
  10796. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10797. External Secrets meta/v1.SecretKeySelector
  10798. </a>
  10799. </em>
  10800. </td>
  10801. <td>
  10802. </td>
  10803. </tr>
  10804. </tbody>
  10805. </table>
  10806. <h3 id="external-secrets.io/v1.UniversalAuthCredentials">UniversalAuthCredentials
  10807. </h3>
  10808. <p>
  10809. (<em>Appears on:</em>
  10810. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  10811. </p>
  10812. <p>
  10813. </p>
  10814. <table>
  10815. <thead>
  10816. <tr>
  10817. <th>Field</th>
  10818. <th>Description</th>
  10819. </tr>
  10820. </thead>
  10821. <tbody>
  10822. <tr>
  10823. <td>
  10824. <code>clientId</code></br>
  10825. <em>
  10826. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10827. External Secrets meta/v1.SecretKeySelector
  10828. </a>
  10829. </em>
  10830. </td>
  10831. <td>
  10832. </td>
  10833. </tr>
  10834. <tr>
  10835. <td>
  10836. <code>clientSecret</code></br>
  10837. <em>
  10838. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10839. External Secrets meta/v1.SecretKeySelector
  10840. </a>
  10841. </em>
  10842. </td>
  10843. <td>
  10844. </td>
  10845. </tr>
  10846. </tbody>
  10847. </table>
  10848. <h3 id="external-secrets.io/v1.ValidationResult">ValidationResult
  10849. (<code>byte</code> alias)</p></h3>
  10850. <p>
  10851. (<em>Appears on:</em>
  10852. <a href="#external-secrets.io/v1.FakeProvider">FakeProvider</a>)
  10853. </p>
  10854. <p>
  10855. </p>
  10856. <table>
  10857. <thead>
  10858. <tr>
  10859. <th>Value</th>
  10860. <th>Description</th>
  10861. </tr>
  10862. </thead>
  10863. <tbody><tr><td><p>2</p></td>
  10864. <td><p>Error indicates that there is a misconfiguration.</p>
  10865. </td>
  10866. </tr><tr><td><p>0</p></td>
  10867. <td><p>Ready indicates that the client is configured correctly
  10868. and can be used.</p>
  10869. </td>
  10870. </tr><tr><td><p>1</p></td>
  10871. <td><p>Unknown indicates that the client can be used
  10872. but information is missing and it can not be validated.</p>
  10873. </td>
  10874. </tr></tbody>
  10875. </table>
  10876. <h3 id="external-secrets.io/v1.VaultAppRole">VaultAppRole
  10877. </h3>
  10878. <p>
  10879. (<em>Appears on:</em>
  10880. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10881. </p>
  10882. <p>
  10883. <p>VaultAppRole authenticates with Vault using the App Role auth mechanism,
  10884. with the role and secret stored in a Kubernetes Secret resource.</p>
  10885. </p>
  10886. <table>
  10887. <thead>
  10888. <tr>
  10889. <th>Field</th>
  10890. <th>Description</th>
  10891. </tr>
  10892. </thead>
  10893. <tbody>
  10894. <tr>
  10895. <td>
  10896. <code>path</code></br>
  10897. <em>
  10898. string
  10899. </em>
  10900. </td>
  10901. <td>
  10902. <p>Path where the App Role authentication backend is mounted
  10903. in Vault, e.g: &ldquo;approle&rdquo;</p>
  10904. </td>
  10905. </tr>
  10906. <tr>
  10907. <td>
  10908. <code>roleId</code></br>
  10909. <em>
  10910. string
  10911. </em>
  10912. </td>
  10913. <td>
  10914. <em>(Optional)</em>
  10915. <p>RoleID configured in the App Role authentication backend when setting
  10916. up the authentication backend in Vault.</p>
  10917. </td>
  10918. </tr>
  10919. <tr>
  10920. <td>
  10921. <code>roleRef</code></br>
  10922. <em>
  10923. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10924. External Secrets meta/v1.SecretKeySelector
  10925. </a>
  10926. </em>
  10927. </td>
  10928. <td>
  10929. <em>(Optional)</em>
  10930. <p>Reference to a key in a Secret that contains the App Role ID used
  10931. to authenticate with Vault.
  10932. The <code>key</code> field must be specified and denotes which entry within the Secret
  10933. resource is used as the app role id.</p>
  10934. </td>
  10935. </tr>
  10936. <tr>
  10937. <td>
  10938. <code>secretRef</code></br>
  10939. <em>
  10940. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10941. External Secrets meta/v1.SecretKeySelector
  10942. </a>
  10943. </em>
  10944. </td>
  10945. <td>
  10946. <p>Reference to a key in a Secret that contains the App Role secret used
  10947. to authenticate with Vault.
  10948. The <code>key</code> field must be specified and denotes which entry within the Secret
  10949. resource is used as the app role secret.</p>
  10950. </td>
  10951. </tr>
  10952. </tbody>
  10953. </table>
  10954. <h3 id="external-secrets.io/v1.VaultAuth">VaultAuth
  10955. </h3>
  10956. <p>
  10957. (<em>Appears on:</em>
  10958. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  10959. </p>
  10960. <p>
  10961. <p>VaultAuth is the configuration used to authenticate with a Vault server.
  10962. Only one of <code>tokenSecretRef</code>, <code>appRole</code>, <code>kubernetes</code>, <code>ldap</code>, <code>userPass</code>, <code>jwt</code> or <code>cert</code>
  10963. can be specified. A namespace to authenticate against can optionally be specified.</p>
  10964. </p>
  10965. <table>
  10966. <thead>
  10967. <tr>
  10968. <th>Field</th>
  10969. <th>Description</th>
  10970. </tr>
  10971. </thead>
  10972. <tbody>
  10973. <tr>
  10974. <td>
  10975. <code>namespace</code></br>
  10976. <em>
  10977. string
  10978. </em>
  10979. </td>
  10980. <td>
  10981. <em>(Optional)</em>
  10982. <p>Name of the vault namespace to authenticate to. This can be different than the namespace your secret is in.
  10983. Namespaces is a set of features within Vault Enterprise that allows
  10984. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  10985. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a>
  10986. This will default to Vault.Namespace field if set, or empty otherwise</p>
  10987. </td>
  10988. </tr>
  10989. <tr>
  10990. <td>
  10991. <code>tokenSecretRef</code></br>
  10992. <em>
  10993. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10994. External Secrets meta/v1.SecretKeySelector
  10995. </a>
  10996. </em>
  10997. </td>
  10998. <td>
  10999. <em>(Optional)</em>
  11000. <p>TokenSecretRef authenticates with Vault by presenting a token.</p>
  11001. </td>
  11002. </tr>
  11003. <tr>
  11004. <td>
  11005. <code>appRole</code></br>
  11006. <em>
  11007. <a href="#external-secrets.io/v1.VaultAppRole">
  11008. VaultAppRole
  11009. </a>
  11010. </em>
  11011. </td>
  11012. <td>
  11013. <em>(Optional)</em>
  11014. <p>AppRole authenticates with Vault using the App Role auth mechanism,
  11015. with the role and secret stored in a Kubernetes Secret resource.</p>
  11016. </td>
  11017. </tr>
  11018. <tr>
  11019. <td>
  11020. <code>kubernetes</code></br>
  11021. <em>
  11022. <a href="#external-secrets.io/v1.VaultKubernetesAuth">
  11023. VaultKubernetesAuth
  11024. </a>
  11025. </em>
  11026. </td>
  11027. <td>
  11028. <em>(Optional)</em>
  11029. <p>Kubernetes authenticates with Vault by passing the ServiceAccount
  11030. token stored in the named Secret resource to the Vault server.</p>
  11031. </td>
  11032. </tr>
  11033. <tr>
  11034. <td>
  11035. <code>ldap</code></br>
  11036. <em>
  11037. <a href="#external-secrets.io/v1.VaultLdapAuth">
  11038. VaultLdapAuth
  11039. </a>
  11040. </em>
  11041. </td>
  11042. <td>
  11043. <em>(Optional)</em>
  11044. <p>Ldap authenticates with Vault by passing username/password pair using
  11045. the LDAP authentication method</p>
  11046. </td>
  11047. </tr>
  11048. <tr>
  11049. <td>
  11050. <code>jwt</code></br>
  11051. <em>
  11052. <a href="#external-secrets.io/v1.VaultJwtAuth">
  11053. VaultJwtAuth
  11054. </a>
  11055. </em>
  11056. </td>
  11057. <td>
  11058. <em>(Optional)</em>
  11059. <p>Jwt authenticates with Vault by passing role and JWT token using the
  11060. JWT/OIDC authentication method</p>
  11061. </td>
  11062. </tr>
  11063. <tr>
  11064. <td>
  11065. <code>cert</code></br>
  11066. <em>
  11067. <a href="#external-secrets.io/v1.VaultCertAuth">
  11068. VaultCertAuth
  11069. </a>
  11070. </em>
  11071. </td>
  11072. <td>
  11073. <em>(Optional)</em>
  11074. <p>Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate
  11075. Cert authentication method</p>
  11076. </td>
  11077. </tr>
  11078. <tr>
  11079. <td>
  11080. <code>iam</code></br>
  11081. <em>
  11082. <a href="#external-secrets.io/v1.VaultIamAuth">
  11083. VaultIamAuth
  11084. </a>
  11085. </em>
  11086. </td>
  11087. <td>
  11088. <em>(Optional)</em>
  11089. <p>Iam authenticates with vault by passing a special AWS request signed with AWS IAM credentials
  11090. AWS IAM authentication method</p>
  11091. </td>
  11092. </tr>
  11093. <tr>
  11094. <td>
  11095. <code>userPass</code></br>
  11096. <em>
  11097. <a href="#external-secrets.io/v1.VaultUserPassAuth">
  11098. VaultUserPassAuth
  11099. </a>
  11100. </em>
  11101. </td>
  11102. <td>
  11103. <em>(Optional)</em>
  11104. <p>UserPass authenticates with Vault by passing username/password pair</p>
  11105. </td>
  11106. </tr>
  11107. </tbody>
  11108. </table>
  11109. <h3 id="external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth
  11110. </h3>
  11111. <p>
  11112. <p>VaultAwsAuth tells the controller how to do authentication with aws.
  11113. Only one of secretRef or jwt can be specified.
  11114. if none is specified the controller will try to load credentials from its own service account assuming it is IRSA enabled.</p>
  11115. </p>
  11116. <table>
  11117. <thead>
  11118. <tr>
  11119. <th>Field</th>
  11120. <th>Description</th>
  11121. </tr>
  11122. </thead>
  11123. <tbody>
  11124. <tr>
  11125. <td>
  11126. <code>secretRef</code></br>
  11127. <em>
  11128. <a href="#external-secrets.io/v1.VaultAwsAuthSecretRef">
  11129. VaultAwsAuthSecretRef
  11130. </a>
  11131. </em>
  11132. </td>
  11133. <td>
  11134. <em>(Optional)</em>
  11135. </td>
  11136. </tr>
  11137. <tr>
  11138. <td>
  11139. <code>jwt</code></br>
  11140. <em>
  11141. <a href="#external-secrets.io/v1.VaultAwsJWTAuth">
  11142. VaultAwsJWTAuth
  11143. </a>
  11144. </em>
  11145. </td>
  11146. <td>
  11147. <em>(Optional)</em>
  11148. </td>
  11149. </tr>
  11150. </tbody>
  11151. </table>
  11152. <h3 id="external-secrets.io/v1.VaultAwsAuthSecretRef">VaultAwsAuthSecretRef
  11153. </h3>
  11154. <p>
  11155. (<em>Appears on:</em>
  11156. <a href="#external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth</a>,
  11157. <a href="#external-secrets.io/v1.VaultIamAuth">VaultIamAuth</a>)
  11158. </p>
  11159. <p>
  11160. <p>VaultAWSAuthSecretRef holds secret references for AWS credentials
  11161. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  11162. </p>
  11163. <table>
  11164. <thead>
  11165. <tr>
  11166. <th>Field</th>
  11167. <th>Description</th>
  11168. </tr>
  11169. </thead>
  11170. <tbody>
  11171. <tr>
  11172. <td>
  11173. <code>accessKeyIDSecretRef</code></br>
  11174. <em>
  11175. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11176. External Secrets meta/v1.SecretKeySelector
  11177. </a>
  11178. </em>
  11179. </td>
  11180. <td>
  11181. <em>(Optional)</em>
  11182. <p>The AccessKeyID is used for authentication</p>
  11183. </td>
  11184. </tr>
  11185. <tr>
  11186. <td>
  11187. <code>secretAccessKeySecretRef</code></br>
  11188. <em>
  11189. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11190. External Secrets meta/v1.SecretKeySelector
  11191. </a>
  11192. </em>
  11193. </td>
  11194. <td>
  11195. <em>(Optional)</em>
  11196. <p>The SecretAccessKey is used for authentication</p>
  11197. </td>
  11198. </tr>
  11199. <tr>
  11200. <td>
  11201. <code>sessionTokenSecretRef</code></br>
  11202. <em>
  11203. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11204. External Secrets meta/v1.SecretKeySelector
  11205. </a>
  11206. </em>
  11207. </td>
  11208. <td>
  11209. <em>(Optional)</em>
  11210. <p>The SessionToken used for authentication
  11211. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  11212. see: <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html</a></p>
  11213. </td>
  11214. </tr>
  11215. </tbody>
  11216. </table>
  11217. <h3 id="external-secrets.io/v1.VaultAwsJWTAuth">VaultAwsJWTAuth
  11218. </h3>
  11219. <p>
  11220. (<em>Appears on:</em>
  11221. <a href="#external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth</a>,
  11222. <a href="#external-secrets.io/v1.VaultIamAuth">VaultIamAuth</a>)
  11223. </p>
  11224. <p>
  11225. <p>VaultAwsJWTAuth Authenticate against AWS using service account tokens.</p>
  11226. </p>
  11227. <table>
  11228. <thead>
  11229. <tr>
  11230. <th>Field</th>
  11231. <th>Description</th>
  11232. </tr>
  11233. </thead>
  11234. <tbody>
  11235. <tr>
  11236. <td>
  11237. <code>serviceAccountRef</code></br>
  11238. <em>
  11239. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  11240. External Secrets meta/v1.ServiceAccountSelector
  11241. </a>
  11242. </em>
  11243. </td>
  11244. <td>
  11245. <em>(Optional)</em>
  11246. </td>
  11247. </tr>
  11248. </tbody>
  11249. </table>
  11250. <h3 id="external-secrets.io/v1.VaultCertAuth">VaultCertAuth
  11251. </h3>
  11252. <p>
  11253. (<em>Appears on:</em>
  11254. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11255. </p>
  11256. <p>
  11257. <p>VaultCertAuth authenticates with Vault using the JWT/OIDC authentication
  11258. method, with the role name and token stored in a Kubernetes Secret resource.</p>
  11259. </p>
  11260. <table>
  11261. <thead>
  11262. <tr>
  11263. <th>Field</th>
  11264. <th>Description</th>
  11265. </tr>
  11266. </thead>
  11267. <tbody>
  11268. <tr>
  11269. <td>
  11270. <code>clientCert</code></br>
  11271. <em>
  11272. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11273. External Secrets meta/v1.SecretKeySelector
  11274. </a>
  11275. </em>
  11276. </td>
  11277. <td>
  11278. <em>(Optional)</em>
  11279. <p>ClientCert is a certificate to authenticate using the Cert Vault
  11280. authentication method</p>
  11281. </td>
  11282. </tr>
  11283. <tr>
  11284. <td>
  11285. <code>secretRef</code></br>
  11286. <em>
  11287. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11288. External Secrets meta/v1.SecretKeySelector
  11289. </a>
  11290. </em>
  11291. </td>
  11292. <td>
  11293. <em>(Optional)</em>
  11294. <p>SecretRef to a key in a Secret resource containing client private key to
  11295. authenticate with Vault using the Cert authentication method</p>
  11296. </td>
  11297. </tr>
  11298. </tbody>
  11299. </table>
  11300. <h3 id="external-secrets.io/v1.VaultCheckAndSet">VaultCheckAndSet
  11301. </h3>
  11302. <p>
  11303. (<em>Appears on:</em>
  11304. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  11305. </p>
  11306. <p>
  11307. <p>VaultCheckAndSet defines the Check-And-Set (CAS) settings for Vault KV v2 PushSecret operations.</p>
  11308. </p>
  11309. <table>
  11310. <thead>
  11311. <tr>
  11312. <th>Field</th>
  11313. <th>Description</th>
  11314. </tr>
  11315. </thead>
  11316. <tbody>
  11317. <tr>
  11318. <td>
  11319. <code>required</code></br>
  11320. <em>
  11321. bool
  11322. </em>
  11323. </td>
  11324. <td>
  11325. <em>(Optional)</em>
  11326. <p>Required when true, all write operations must include a check-and-set parameter.
  11327. This helps prevent unintentional overwrites of secrets.</p>
  11328. </td>
  11329. </tr>
  11330. </tbody>
  11331. </table>
  11332. <h3 id="external-secrets.io/v1.VaultClientTLS">VaultClientTLS
  11333. </h3>
  11334. <p>
  11335. (<em>Appears on:</em>
  11336. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  11337. </p>
  11338. <p>
  11339. <p>VaultClientTLS is the configuration used for client side related TLS communication,
  11340. when the Vault server requires mutual authentication.</p>
  11341. </p>
  11342. <table>
  11343. <thead>
  11344. <tr>
  11345. <th>Field</th>
  11346. <th>Description</th>
  11347. </tr>
  11348. </thead>
  11349. <tbody>
  11350. <tr>
  11351. <td>
  11352. <code>certSecretRef</code></br>
  11353. <em>
  11354. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11355. External Secrets meta/v1.SecretKeySelector
  11356. </a>
  11357. </em>
  11358. </td>
  11359. <td>
  11360. <em>(Optional)</em>
  11361. <p>CertSecretRef is a certificate added to the transport layer
  11362. when communicating with the Vault server.
  11363. If no key for the Secret is specified, external-secret will default to &lsquo;tls.crt&rsquo;.</p>
  11364. </td>
  11365. </tr>
  11366. <tr>
  11367. <td>
  11368. <code>keySecretRef</code></br>
  11369. <em>
  11370. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11371. External Secrets meta/v1.SecretKeySelector
  11372. </a>
  11373. </em>
  11374. </td>
  11375. <td>
  11376. <em>(Optional)</em>
  11377. <p>KeySecretRef to a key in a Secret resource containing client private key
  11378. added to the transport layer when communicating with the Vault server.
  11379. If no key for the Secret is specified, external-secret will default to &lsquo;tls.key&rsquo;.</p>
  11380. </td>
  11381. </tr>
  11382. </tbody>
  11383. </table>
  11384. <h3 id="external-secrets.io/v1.VaultIamAuth">VaultIamAuth
  11385. </h3>
  11386. <p>
  11387. (<em>Appears on:</em>
  11388. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11389. </p>
  11390. <p>
  11391. <p>VaultIamAuth authenticates with Vault using the Vault&rsquo;s AWS IAM authentication method. Refer: <a href="https://developer.hashicorp.com/vault/docs/auth/aws">https://developer.hashicorp.com/vault/docs/auth/aws</a></p>
  11392. </p>
  11393. <table>
  11394. <thead>
  11395. <tr>
  11396. <th>Field</th>
  11397. <th>Description</th>
  11398. </tr>
  11399. </thead>
  11400. <tbody>
  11401. <tr>
  11402. <td>
  11403. <code>path</code></br>
  11404. <em>
  11405. string
  11406. </em>
  11407. </td>
  11408. <td>
  11409. <em>(Optional)</em>
  11410. <p>Path where the AWS auth method is enabled in Vault, e.g: &ldquo;aws&rdquo;</p>
  11411. </td>
  11412. </tr>
  11413. <tr>
  11414. <td>
  11415. <code>region</code></br>
  11416. <em>
  11417. string
  11418. </em>
  11419. </td>
  11420. <td>
  11421. <em>(Optional)</em>
  11422. <p>AWS region</p>
  11423. </td>
  11424. </tr>
  11425. <tr>
  11426. <td>
  11427. <code>role</code></br>
  11428. <em>
  11429. string
  11430. </em>
  11431. </td>
  11432. <td>
  11433. <em>(Optional)</em>
  11434. <p>This is the AWS role to be assumed before talking to vault</p>
  11435. </td>
  11436. </tr>
  11437. <tr>
  11438. <td>
  11439. <code>vaultRole</code></br>
  11440. <em>
  11441. string
  11442. </em>
  11443. </td>
  11444. <td>
  11445. <p>Vault Role. In vault, a role describes an identity with a set of permissions, groups, or policies you want to attach a user of the secrets engine</p>
  11446. </td>
  11447. </tr>
  11448. <tr>
  11449. <td>
  11450. <code>externalID</code></br>
  11451. <em>
  11452. string
  11453. </em>
  11454. </td>
  11455. <td>
  11456. <p>AWS External ID set on assumed IAM roles</p>
  11457. </td>
  11458. </tr>
  11459. <tr>
  11460. <td>
  11461. <code>vaultAwsIamServerID</code></br>
  11462. <em>
  11463. string
  11464. </em>
  11465. </td>
  11466. <td>
  11467. <em>(Optional)</em>
  11468. <p>X-Vault-AWS-IAM-Server-ID is an additional header used by Vault IAM auth method to mitigate against different types of replay attacks. More details here: <a href="https://developer.hashicorp.com/vault/docs/auth/aws">https://developer.hashicorp.com/vault/docs/auth/aws</a></p>
  11469. </td>
  11470. </tr>
  11471. <tr>
  11472. <td>
  11473. <code>secretRef</code></br>
  11474. <em>
  11475. <a href="#external-secrets.io/v1.VaultAwsAuthSecretRef">
  11476. VaultAwsAuthSecretRef
  11477. </a>
  11478. </em>
  11479. </td>
  11480. <td>
  11481. <em>(Optional)</em>
  11482. <p>Specify credentials in a Secret object</p>
  11483. </td>
  11484. </tr>
  11485. <tr>
  11486. <td>
  11487. <code>jwt</code></br>
  11488. <em>
  11489. <a href="#external-secrets.io/v1.VaultAwsJWTAuth">
  11490. VaultAwsJWTAuth
  11491. </a>
  11492. </em>
  11493. </td>
  11494. <td>
  11495. <em>(Optional)</em>
  11496. <p>Specify a service account with IRSA enabled</p>
  11497. </td>
  11498. </tr>
  11499. </tbody>
  11500. </table>
  11501. <h3 id="external-secrets.io/v1.VaultJwtAuth">VaultJwtAuth
  11502. </h3>
  11503. <p>
  11504. (<em>Appears on:</em>
  11505. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11506. </p>
  11507. <p>
  11508. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  11509. method, with the role name and a token stored in a Kubernetes Secret resource or
  11510. a Kubernetes service account token retrieved via <code>TokenRequest</code>.</p>
  11511. </p>
  11512. <table>
  11513. <thead>
  11514. <tr>
  11515. <th>Field</th>
  11516. <th>Description</th>
  11517. </tr>
  11518. </thead>
  11519. <tbody>
  11520. <tr>
  11521. <td>
  11522. <code>path</code></br>
  11523. <em>
  11524. string
  11525. </em>
  11526. </td>
  11527. <td>
  11528. <p>Path where the JWT authentication backend is mounted
  11529. in Vault, e.g: &ldquo;jwt&rdquo;</p>
  11530. </td>
  11531. </tr>
  11532. <tr>
  11533. <td>
  11534. <code>role</code></br>
  11535. <em>
  11536. string
  11537. </em>
  11538. </td>
  11539. <td>
  11540. <em>(Optional)</em>
  11541. <p>Role is a JWT role to authenticate using the JWT/OIDC Vault
  11542. authentication method</p>
  11543. </td>
  11544. </tr>
  11545. <tr>
  11546. <td>
  11547. <code>secretRef</code></br>
  11548. <em>
  11549. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11550. External Secrets meta/v1.SecretKeySelector
  11551. </a>
  11552. </em>
  11553. </td>
  11554. <td>
  11555. <em>(Optional)</em>
  11556. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  11557. authenticate with Vault using the JWT/OIDC authentication method.</p>
  11558. </td>
  11559. </tr>
  11560. <tr>
  11561. <td>
  11562. <code>kubernetesServiceAccountToken</code></br>
  11563. <em>
  11564. <a href="#external-secrets.io/v1.VaultKubernetesServiceAccountTokenAuth">
  11565. VaultKubernetesServiceAccountTokenAuth
  11566. </a>
  11567. </em>
  11568. </td>
  11569. <td>
  11570. <em>(Optional)</em>
  11571. <p>Optional ServiceAccountToken specifies the Kubernetes service account for which to request
  11572. a token for with the <code>TokenRequest</code> API.</p>
  11573. </td>
  11574. </tr>
  11575. </tbody>
  11576. </table>
  11577. <h3 id="external-secrets.io/v1.VaultKVStoreVersion">VaultKVStoreVersion
  11578. (<code>string</code> alias)</p></h3>
  11579. <p>
  11580. (<em>Appears on:</em>
  11581. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  11582. </p>
  11583. <p>
  11584. </p>
  11585. <table>
  11586. <thead>
  11587. <tr>
  11588. <th>Value</th>
  11589. <th>Description</th>
  11590. </tr>
  11591. </thead>
  11592. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  11593. <td></td>
  11594. </tr><tr><td><p>&#34;v2&#34;</p></td>
  11595. <td></td>
  11596. </tr></tbody>
  11597. </table>
  11598. <h3 id="external-secrets.io/v1.VaultKubernetesAuth">VaultKubernetesAuth
  11599. </h3>
  11600. <p>
  11601. (<em>Appears on:</em>
  11602. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11603. </p>
  11604. <p>
  11605. <p>Authenticate against Vault using a Kubernetes ServiceAccount token stored in
  11606. a Secret.</p>
  11607. </p>
  11608. <table>
  11609. <thead>
  11610. <tr>
  11611. <th>Field</th>
  11612. <th>Description</th>
  11613. </tr>
  11614. </thead>
  11615. <tbody>
  11616. <tr>
  11617. <td>
  11618. <code>mountPath</code></br>
  11619. <em>
  11620. string
  11621. </em>
  11622. </td>
  11623. <td>
  11624. <p>Path where the Kubernetes authentication backend is mounted in Vault, e.g:
  11625. &ldquo;kubernetes&rdquo;</p>
  11626. </td>
  11627. </tr>
  11628. <tr>
  11629. <td>
  11630. <code>serviceAccountRef</code></br>
  11631. <em>
  11632. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  11633. External Secrets meta/v1.ServiceAccountSelector
  11634. </a>
  11635. </em>
  11636. </td>
  11637. <td>
  11638. <em>(Optional)</em>
  11639. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  11640. If the service account is specified, the service account secret token JWT will be used
  11641. for authenticating with Vault. If the service account selector is not supplied,
  11642. the secretRef will be used instead.</p>
  11643. </td>
  11644. </tr>
  11645. <tr>
  11646. <td>
  11647. <code>secretRef</code></br>
  11648. <em>
  11649. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11650. External Secrets meta/v1.SecretKeySelector
  11651. </a>
  11652. </em>
  11653. </td>
  11654. <td>
  11655. <em>(Optional)</em>
  11656. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  11657. for authenticating with Vault. If a name is specified without a key,
  11658. <code>token</code> is the default. If one is not specified, the one bound to
  11659. the controller will be used.</p>
  11660. </td>
  11661. </tr>
  11662. <tr>
  11663. <td>
  11664. <code>role</code></br>
  11665. <em>
  11666. string
  11667. </em>
  11668. </td>
  11669. <td>
  11670. <p>A required field containing the Vault Role to assume. A Role binds a
  11671. Kubernetes ServiceAccount with a set of Vault policies.</p>
  11672. </td>
  11673. </tr>
  11674. </tbody>
  11675. </table>
  11676. <h3 id="external-secrets.io/v1.VaultKubernetesServiceAccountTokenAuth">VaultKubernetesServiceAccountTokenAuth
  11677. </h3>
  11678. <p>
  11679. (<em>Appears on:</em>
  11680. <a href="#external-secrets.io/v1.VaultJwtAuth">VaultJwtAuth</a>)
  11681. </p>
  11682. <p>
  11683. <p>VaultKubernetesServiceAccountTokenAuth authenticates with Vault using a temporary
  11684. Kubernetes service account token retrieved by the <code>TokenRequest</code> API.</p>
  11685. </p>
  11686. <table>
  11687. <thead>
  11688. <tr>
  11689. <th>Field</th>
  11690. <th>Description</th>
  11691. </tr>
  11692. </thead>
  11693. <tbody>
  11694. <tr>
  11695. <td>
  11696. <code>serviceAccountRef</code></br>
  11697. <em>
  11698. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  11699. External Secrets meta/v1.ServiceAccountSelector
  11700. </a>
  11701. </em>
  11702. </td>
  11703. <td>
  11704. <p>Service account field containing the name of a kubernetes ServiceAccount.</p>
  11705. </td>
  11706. </tr>
  11707. <tr>
  11708. <td>
  11709. <code>audiences</code></br>
  11710. <em>
  11711. []string
  11712. </em>
  11713. </td>
  11714. <td>
  11715. <em>(Optional)</em>
  11716. <p>Optional audiences field that will be used to request a temporary Kubernetes service
  11717. account token for the service account referenced by <code>serviceAccountRef</code>.
  11718. Defaults to a single audience <code>vault</code> it not specified.
  11719. Deprecated: use serviceAccountRef.Audiences instead</p>
  11720. </td>
  11721. </tr>
  11722. <tr>
  11723. <td>
  11724. <code>expirationSeconds</code></br>
  11725. <em>
  11726. int64
  11727. </em>
  11728. </td>
  11729. <td>
  11730. <em>(Optional)</em>
  11731. <p>Optional expiration time in seconds that will be used to request a temporary
  11732. Kubernetes service account token for the service account referenced by
  11733. <code>serviceAccountRef</code>.
  11734. Deprecated: this will be removed in the future.
  11735. Defaults to 10 minutes.</p>
  11736. </td>
  11737. </tr>
  11738. </tbody>
  11739. </table>
  11740. <h3 id="external-secrets.io/v1.VaultLdapAuth">VaultLdapAuth
  11741. </h3>
  11742. <p>
  11743. (<em>Appears on:</em>
  11744. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11745. </p>
  11746. <p>
  11747. <p>VaultLdapAuth authenticates with Vault using the LDAP authentication method,
  11748. with the username and password stored in a Kubernetes Secret resource.</p>
  11749. </p>
  11750. <table>
  11751. <thead>
  11752. <tr>
  11753. <th>Field</th>
  11754. <th>Description</th>
  11755. </tr>
  11756. </thead>
  11757. <tbody>
  11758. <tr>
  11759. <td>
  11760. <code>path</code></br>
  11761. <em>
  11762. string
  11763. </em>
  11764. </td>
  11765. <td>
  11766. <p>Path where the LDAP authentication backend is mounted
  11767. in Vault, e.g: &ldquo;ldap&rdquo;</p>
  11768. </td>
  11769. </tr>
  11770. <tr>
  11771. <td>
  11772. <code>username</code></br>
  11773. <em>
  11774. string
  11775. </em>
  11776. </td>
  11777. <td>
  11778. <p>Username is an LDAP username used to authenticate using the LDAP Vault
  11779. authentication method</p>
  11780. </td>
  11781. </tr>
  11782. <tr>
  11783. <td>
  11784. <code>secretRef</code></br>
  11785. <em>
  11786. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11787. External Secrets meta/v1.SecretKeySelector
  11788. </a>
  11789. </em>
  11790. </td>
  11791. <td>
  11792. <em>(Optional)</em>
  11793. <p>SecretRef to a key in a Secret resource containing password for the LDAP
  11794. user used to authenticate with Vault using the LDAP authentication
  11795. method</p>
  11796. </td>
  11797. </tr>
  11798. </tbody>
  11799. </table>
  11800. <h3 id="external-secrets.io/v1.VaultProvider">VaultProvider
  11801. </h3>
  11802. <p>
  11803. (<em>Appears on:</em>
  11804. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  11805. </p>
  11806. <p>
  11807. <p>Configures an store to sync secrets using a HashiCorp Vault
  11808. KV backend.</p>
  11809. </p>
  11810. <table>
  11811. <thead>
  11812. <tr>
  11813. <th>Field</th>
  11814. <th>Description</th>
  11815. </tr>
  11816. </thead>
  11817. <tbody>
  11818. <tr>
  11819. <td>
  11820. <code>auth</code></br>
  11821. <em>
  11822. <a href="#external-secrets.io/v1.VaultAuth">
  11823. VaultAuth
  11824. </a>
  11825. </em>
  11826. </td>
  11827. <td>
  11828. <p>Auth configures how secret-manager authenticates with the Vault server.</p>
  11829. </td>
  11830. </tr>
  11831. <tr>
  11832. <td>
  11833. <code>server</code></br>
  11834. <em>
  11835. string
  11836. </em>
  11837. </td>
  11838. <td>
  11839. <p>Server is the connection address for the Vault server, e.g: &ldquo;<a href="https://vault.example.com:8200&quot;">https://vault.example.com:8200&rdquo;</a>.</p>
  11840. </td>
  11841. </tr>
  11842. <tr>
  11843. <td>
  11844. <code>path</code></br>
  11845. <em>
  11846. string
  11847. </em>
  11848. </td>
  11849. <td>
  11850. <em>(Optional)</em>
  11851. <p>Path is the mount path of the Vault KV backend endpoint, e.g:
  11852. &ldquo;secret&rdquo;. The v2 KV secret engine version specific &ldquo;/data&rdquo; path suffix
  11853. for fetching secrets from Vault is optional and will be appended
  11854. if not present in specified path.</p>
  11855. </td>
  11856. </tr>
  11857. <tr>
  11858. <td>
  11859. <code>version</code></br>
  11860. <em>
  11861. <a href="#external-secrets.io/v1.VaultKVStoreVersion">
  11862. VaultKVStoreVersion
  11863. </a>
  11864. </em>
  11865. </td>
  11866. <td>
  11867. <p>Version is the Vault KV secret engine version. This can be either &ldquo;v1&rdquo; or
  11868. &ldquo;v2&rdquo;. Version defaults to &ldquo;v2&rdquo;.</p>
  11869. </td>
  11870. </tr>
  11871. <tr>
  11872. <td>
  11873. <code>namespace</code></br>
  11874. <em>
  11875. string
  11876. </em>
  11877. </td>
  11878. <td>
  11879. <em>(Optional)</em>
  11880. <p>Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows
  11881. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  11882. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a></p>
  11883. </td>
  11884. </tr>
  11885. <tr>
  11886. <td>
  11887. <code>caBundle</code></br>
  11888. <em>
  11889. []byte
  11890. </em>
  11891. </td>
  11892. <td>
  11893. <em>(Optional)</em>
  11894. <p>PEM encoded CA bundle used to validate Vault server certificate. Only used
  11895. if the Server URL is using HTTPS protocol. This parameter is ignored for
  11896. plain HTTP protocol connection. If not set the system root certificates
  11897. are used to validate the TLS connection.</p>
  11898. </td>
  11899. </tr>
  11900. <tr>
  11901. <td>
  11902. <code>tls</code></br>
  11903. <em>
  11904. <a href="#external-secrets.io/v1.VaultClientTLS">
  11905. VaultClientTLS
  11906. </a>
  11907. </em>
  11908. </td>
  11909. <td>
  11910. <em>(Optional)</em>
  11911. <p>The configuration used for client side related TLS communication, when the Vault server
  11912. requires mutual authentication. Only used if the Server URL is using HTTPS protocol.
  11913. This parameter is ignored for plain HTTP protocol connection.
  11914. It&rsquo;s worth noting this configuration is different from the &ldquo;TLS certificates auth method&rdquo;,
  11915. which is available under the <code>auth.cert</code> section.</p>
  11916. </td>
  11917. </tr>
  11918. <tr>
  11919. <td>
  11920. <code>caProvider</code></br>
  11921. <em>
  11922. <a href="#external-secrets.io/v1.CAProvider">
  11923. CAProvider
  11924. </a>
  11925. </em>
  11926. </td>
  11927. <td>
  11928. <em>(Optional)</em>
  11929. <p>The provider for the CA bundle to use to validate Vault server certificate.</p>
  11930. </td>
  11931. </tr>
  11932. <tr>
  11933. <td>
  11934. <code>readYourWrites</code></br>
  11935. <em>
  11936. bool
  11937. </em>
  11938. </td>
  11939. <td>
  11940. <em>(Optional)</em>
  11941. <p>ReadYourWrites ensures isolated read-after-write semantics by
  11942. providing discovered cluster replication states in each request.
  11943. More information about eventual consistency in Vault can be found here
  11944. <a href="https://www.vaultproject.io/docs/enterprise/consistency">https://www.vaultproject.io/docs/enterprise/consistency</a></p>
  11945. </td>
  11946. </tr>
  11947. <tr>
  11948. <td>
  11949. <code>forwardInconsistent</code></br>
  11950. <em>
  11951. bool
  11952. </em>
  11953. </td>
  11954. <td>
  11955. <em>(Optional)</em>
  11956. <p>ForwardInconsistent tells Vault to forward read-after-write requests to the Vault
  11957. leader instead of simply retrying within a loop. This can increase performance if
  11958. the option is enabled serverside.
  11959. <a href="https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header">https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header</a></p>
  11960. </td>
  11961. </tr>
  11962. <tr>
  11963. <td>
  11964. <code>headers</code></br>
  11965. <em>
  11966. map[string]string
  11967. </em>
  11968. </td>
  11969. <td>
  11970. <em>(Optional)</em>
  11971. <p>Headers to be added in Vault request</p>
  11972. </td>
  11973. </tr>
  11974. <tr>
  11975. <td>
  11976. <code>checkAndSet</code></br>
  11977. <em>
  11978. <a href="#external-secrets.io/v1.VaultCheckAndSet">
  11979. VaultCheckAndSet
  11980. </a>
  11981. </em>
  11982. </td>
  11983. <td>
  11984. <em>(Optional)</em>
  11985. <p>CheckAndSet defines the Check-And-Set (CAS) settings for PushSecret operations.
  11986. Only applies to Vault KV v2 stores. When enabled, write operations must include
  11987. the current version of the secret to prevent unintentional overwrites.</p>
  11988. </td>
  11989. </tr>
  11990. </tbody>
  11991. </table>
  11992. <h3 id="external-secrets.io/v1.VaultUserPassAuth">VaultUserPassAuth
  11993. </h3>
  11994. <p>
  11995. (<em>Appears on:</em>
  11996. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11997. </p>
  11998. <p>
  11999. <p>VaultUserPassAuth authenticates with Vault using UserPass authentication method,
  12000. with the username and password stored in a Kubernetes Secret resource.</p>
  12001. </p>
  12002. <table>
  12003. <thead>
  12004. <tr>
  12005. <th>Field</th>
  12006. <th>Description</th>
  12007. </tr>
  12008. </thead>
  12009. <tbody>
  12010. <tr>
  12011. <td>
  12012. <code>path</code></br>
  12013. <em>
  12014. string
  12015. </em>
  12016. </td>
  12017. <td>
  12018. <p>Path where the UserPassword authentication backend is mounted
  12019. in Vault, e.g: &ldquo;userpass&rdquo;</p>
  12020. </td>
  12021. </tr>
  12022. <tr>
  12023. <td>
  12024. <code>username</code></br>
  12025. <em>
  12026. string
  12027. </em>
  12028. </td>
  12029. <td>
  12030. <p>Username is a username used to authenticate using the UserPass Vault
  12031. authentication method</p>
  12032. </td>
  12033. </tr>
  12034. <tr>
  12035. <td>
  12036. <code>secretRef</code></br>
  12037. <em>
  12038. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  12039. External Secrets meta/v1.SecretKeySelector
  12040. </a>
  12041. </em>
  12042. </td>
  12043. <td>
  12044. <em>(Optional)</em>
  12045. <p>SecretRef to a key in a Secret resource containing password for the
  12046. user used to authenticate with Vault using the UserPass authentication
  12047. method</p>
  12048. </td>
  12049. </tr>
  12050. </tbody>
  12051. </table>
  12052. <h3 id="external-secrets.io/v1.WebhookCAProvider">WebhookCAProvider
  12053. </h3>
  12054. <p>
  12055. (<em>Appears on:</em>
  12056. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  12057. </p>
  12058. <p>
  12059. <p>Defines a location to fetch the cert for the webhook provider from.</p>
  12060. </p>
  12061. <table>
  12062. <thead>
  12063. <tr>
  12064. <th>Field</th>
  12065. <th>Description</th>
  12066. </tr>
  12067. </thead>
  12068. <tbody>
  12069. <tr>
  12070. <td>
  12071. <code>type</code></br>
  12072. <em>
  12073. <a href="#external-secrets.io/v1.WebhookCAProviderType">
  12074. WebhookCAProviderType
  12075. </a>
  12076. </em>
  12077. </td>
  12078. <td>
  12079. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  12080. </td>
  12081. </tr>
  12082. <tr>
  12083. <td>
  12084. <code>name</code></br>
  12085. <em>
  12086. string
  12087. </em>
  12088. </td>
  12089. <td>
  12090. <p>The name of the object located at the provider type.</p>
  12091. </td>
  12092. </tr>
  12093. <tr>
  12094. <td>
  12095. <code>key</code></br>
  12096. <em>
  12097. string
  12098. </em>
  12099. </td>
  12100. <td>
  12101. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  12102. </td>
  12103. </tr>
  12104. <tr>
  12105. <td>
  12106. <code>namespace</code></br>
  12107. <em>
  12108. string
  12109. </em>
  12110. </td>
  12111. <td>
  12112. <em>(Optional)</em>
  12113. <p>The namespace the Provider type is in.</p>
  12114. </td>
  12115. </tr>
  12116. </tbody>
  12117. </table>
  12118. <h3 id="external-secrets.io/v1.WebhookCAProviderType">WebhookCAProviderType
  12119. (<code>string</code> alias)</p></h3>
  12120. <p>
  12121. (<em>Appears on:</em>
  12122. <a href="#external-secrets.io/v1.WebhookCAProvider">WebhookCAProvider</a>)
  12123. </p>
  12124. <p>
  12125. </p>
  12126. <table>
  12127. <thead>
  12128. <tr>
  12129. <th>Value</th>
  12130. <th>Description</th>
  12131. </tr>
  12132. </thead>
  12133. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  12134. <td></td>
  12135. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  12136. <td></td>
  12137. </tr></tbody>
  12138. </table>
  12139. <h3 id="external-secrets.io/v1.WebhookProvider">WebhookProvider
  12140. </h3>
  12141. <p>
  12142. (<em>Appears on:</em>
  12143. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  12144. </p>
  12145. <p>
  12146. <p>WebHookProvider Configures an store to sync secrets from simple web apis.</p>
  12147. </p>
  12148. <table>
  12149. <thead>
  12150. <tr>
  12151. <th>Field</th>
  12152. <th>Description</th>
  12153. </tr>
  12154. </thead>
  12155. <tbody>
  12156. <tr>
  12157. <td>
  12158. <code>method</code></br>
  12159. <em>
  12160. string
  12161. </em>
  12162. </td>
  12163. <td>
  12164. <p>Webhook Method</p>
  12165. </td>
  12166. </tr>
  12167. <tr>
  12168. <td>
  12169. <code>url</code></br>
  12170. <em>
  12171. string
  12172. </em>
  12173. </td>
  12174. <td>
  12175. <p>Webhook url to call</p>
  12176. </td>
  12177. </tr>
  12178. <tr>
  12179. <td>
  12180. <code>headers</code></br>
  12181. <em>
  12182. map[string]string
  12183. </em>
  12184. </td>
  12185. <td>
  12186. <em>(Optional)</em>
  12187. <p>Headers</p>
  12188. </td>
  12189. </tr>
  12190. <tr>
  12191. <td>
  12192. <code>auth</code></br>
  12193. <em>
  12194. <a href="#external-secrets.io/v1.AuthorizationProtocol">
  12195. AuthorizationProtocol
  12196. </a>
  12197. </em>
  12198. </td>
  12199. <td>
  12200. <em>(Optional)</em>
  12201. <p>Auth specifies a authorization protocol. Only one protocol may be set.</p>
  12202. </td>
  12203. </tr>
  12204. <tr>
  12205. <td>
  12206. <code>body</code></br>
  12207. <em>
  12208. string
  12209. </em>
  12210. </td>
  12211. <td>
  12212. <em>(Optional)</em>
  12213. <p>Body</p>
  12214. </td>
  12215. </tr>
  12216. <tr>
  12217. <td>
  12218. <code>timeout</code></br>
  12219. <em>
  12220. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  12221. Kubernetes meta/v1.Duration
  12222. </a>
  12223. </em>
  12224. </td>
  12225. <td>
  12226. <em>(Optional)</em>
  12227. <p>Timeout</p>
  12228. </td>
  12229. </tr>
  12230. <tr>
  12231. <td>
  12232. <code>result</code></br>
  12233. <em>
  12234. <a href="#external-secrets.io/v1.WebhookResult">
  12235. WebhookResult
  12236. </a>
  12237. </em>
  12238. </td>
  12239. <td>
  12240. <p>Result formatting</p>
  12241. </td>
  12242. </tr>
  12243. <tr>
  12244. <td>
  12245. <code>secrets</code></br>
  12246. <em>
  12247. <a href="#external-secrets.io/v1.WebhookSecret">
  12248. []WebhookSecret
  12249. </a>
  12250. </em>
  12251. </td>
  12252. <td>
  12253. <em>(Optional)</em>
  12254. <p>Secrets to fill in templates
  12255. These secrets will be passed to the templating function as key value pairs under the given name</p>
  12256. </td>
  12257. </tr>
  12258. <tr>
  12259. <td>
  12260. <code>caBundle</code></br>
  12261. <em>
  12262. []byte
  12263. </em>
  12264. </td>
  12265. <td>
  12266. <em>(Optional)</em>
  12267. <p>PEM encoded CA bundle used to validate webhook server certificate. Only used
  12268. if the Server URL is using HTTPS protocol. This parameter is ignored for
  12269. plain HTTP protocol connection. If not set the system root certificates
  12270. are used to validate the TLS connection.</p>
  12271. </td>
  12272. </tr>
  12273. <tr>
  12274. <td>
  12275. <code>caProvider</code></br>
  12276. <em>
  12277. <a href="#external-secrets.io/v1.WebhookCAProvider">
  12278. WebhookCAProvider
  12279. </a>
  12280. </em>
  12281. </td>
  12282. <td>
  12283. <em>(Optional)</em>
  12284. <p>The provider for the CA bundle to use to validate webhook server certificate.</p>
  12285. </td>
  12286. </tr>
  12287. </tbody>
  12288. </table>
  12289. <h3 id="external-secrets.io/v1.WebhookResult">WebhookResult
  12290. </h3>
  12291. <p>
  12292. (<em>Appears on:</em>
  12293. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  12294. </p>
  12295. <p>
  12296. </p>
  12297. <table>
  12298. <thead>
  12299. <tr>
  12300. <th>Field</th>
  12301. <th>Description</th>
  12302. </tr>
  12303. </thead>
  12304. <tbody>
  12305. <tr>
  12306. <td>
  12307. <code>jsonPath</code></br>
  12308. <em>
  12309. string
  12310. </em>
  12311. </td>
  12312. <td>
  12313. <em>(Optional)</em>
  12314. <p>Json path of return value</p>
  12315. </td>
  12316. </tr>
  12317. </tbody>
  12318. </table>
  12319. <h3 id="external-secrets.io/v1.WebhookSecret">WebhookSecret
  12320. </h3>
  12321. <p>
  12322. (<em>Appears on:</em>
  12323. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  12324. </p>
  12325. <p>
  12326. </p>
  12327. <table>
  12328. <thead>
  12329. <tr>
  12330. <th>Field</th>
  12331. <th>Description</th>
  12332. </tr>
  12333. </thead>
  12334. <tbody>
  12335. <tr>
  12336. <td>
  12337. <code>name</code></br>
  12338. <em>
  12339. string
  12340. </em>
  12341. </td>
  12342. <td>
  12343. <p>Name of this secret in templates</p>
  12344. </td>
  12345. </tr>
  12346. <tr>
  12347. <td>
  12348. <code>secretRef</code></br>
  12349. <em>
  12350. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  12351. External Secrets meta/v1.SecretKeySelector
  12352. </a>
  12353. </em>
  12354. </td>
  12355. <td>
  12356. <p>Secret ref to fill in credentials</p>
  12357. </td>
  12358. </tr>
  12359. </tbody>
  12360. </table>
  12361. <h3 id="external-secrets.io/v1.YandexAuth">YandexAuth
  12362. </h3>
  12363. <p>
  12364. (<em>Appears on:</em>
  12365. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>,
  12366. <a href="#external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider</a>)
  12367. </p>
  12368. <p>
  12369. </p>
  12370. <table>
  12371. <thead>
  12372. <tr>
  12373. <th>Field</th>
  12374. <th>Description</th>
  12375. </tr>
  12376. </thead>
  12377. <tbody>
  12378. <tr>
  12379. <td>
  12380. <code>authorizedKeySecretRef</code></br>
  12381. <em>
  12382. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  12383. External Secrets meta/v1.SecretKeySelector
  12384. </a>
  12385. </em>
  12386. </td>
  12387. <td>
  12388. <em>(Optional)</em>
  12389. <p>The authorized key used for authentication</p>
  12390. </td>
  12391. </tr>
  12392. </tbody>
  12393. </table>
  12394. <h3 id="external-secrets.io/v1.YandexCAProvider">YandexCAProvider
  12395. </h3>
  12396. <p>
  12397. (<em>Appears on:</em>
  12398. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>,
  12399. <a href="#external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider</a>)
  12400. </p>
  12401. <p>
  12402. </p>
  12403. <table>
  12404. <thead>
  12405. <tr>
  12406. <th>Field</th>
  12407. <th>Description</th>
  12408. </tr>
  12409. </thead>
  12410. <tbody>
  12411. <tr>
  12412. <td>
  12413. <code>certSecretRef</code></br>
  12414. <em>
  12415. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  12416. External Secrets meta/v1.SecretKeySelector
  12417. </a>
  12418. </em>
  12419. </td>
  12420. <td>
  12421. </td>
  12422. </tr>
  12423. </tbody>
  12424. </table>
  12425. <h3 id="external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider
  12426. </h3>
  12427. <p>
  12428. (<em>Appears on:</em>
  12429. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  12430. </p>
  12431. <p>
  12432. <p>YandexCertificateManagerProvider Configures a store to sync secrets using the Yandex Certificate Manager provider.</p>
  12433. </p>
  12434. <table>
  12435. <thead>
  12436. <tr>
  12437. <th>Field</th>
  12438. <th>Description</th>
  12439. </tr>
  12440. </thead>
  12441. <tbody>
  12442. <tr>
  12443. <td>
  12444. <code>apiEndpoint</code></br>
  12445. <em>
  12446. string
  12447. </em>
  12448. </td>
  12449. <td>
  12450. <em>(Optional)</em>
  12451. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  12452. </td>
  12453. </tr>
  12454. <tr>
  12455. <td>
  12456. <code>auth</code></br>
  12457. <em>
  12458. <a href="#external-secrets.io/v1.YandexAuth">
  12459. YandexAuth
  12460. </a>
  12461. </em>
  12462. </td>
  12463. <td>
  12464. <p>Auth defines the information necessary to authenticate against Yandex.Cloud</p>
  12465. </td>
  12466. </tr>
  12467. <tr>
  12468. <td>
  12469. <code>caProvider</code></br>
  12470. <em>
  12471. <a href="#external-secrets.io/v1.YandexCAProvider">
  12472. YandexCAProvider
  12473. </a>
  12474. </em>
  12475. </td>
  12476. <td>
  12477. <em>(Optional)</em>
  12478. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  12479. </td>
  12480. </tr>
  12481. <tr>
  12482. <td>
  12483. <code>fetching</code></br>
  12484. <em>
  12485. <a href="#external-secrets.io/v1.FetchingPolicy">
  12486. FetchingPolicy
  12487. </a>
  12488. </em>
  12489. </td>
  12490. <td>
  12491. <em>(Optional)</em>
  12492. <p>FetchingPolicy configures the provider to interpret the <code>data.secretKey.remoteRef.key</code> field in ExternalSecret as certificate ID or certificate name</p>
  12493. </td>
  12494. </tr>
  12495. </tbody>
  12496. </table>
  12497. <h3 id="external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider
  12498. </h3>
  12499. <p>
  12500. (<em>Appears on:</em>
  12501. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  12502. </p>
  12503. <p>
  12504. <p>YandexLockboxProvider Configures a store to sync secrets using the Yandex Lockbox provider.</p>
  12505. </p>
  12506. <table>
  12507. <thead>
  12508. <tr>
  12509. <th>Field</th>
  12510. <th>Description</th>
  12511. </tr>
  12512. </thead>
  12513. <tbody>
  12514. <tr>
  12515. <td>
  12516. <code>apiEndpoint</code></br>
  12517. <em>
  12518. string
  12519. </em>
  12520. </td>
  12521. <td>
  12522. <em>(Optional)</em>
  12523. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  12524. </td>
  12525. </tr>
  12526. <tr>
  12527. <td>
  12528. <code>auth</code></br>
  12529. <em>
  12530. <a href="#external-secrets.io/v1.YandexAuth">
  12531. YandexAuth
  12532. </a>
  12533. </em>
  12534. </td>
  12535. <td>
  12536. <p>Auth defines the information necessary to authenticate against Yandex.Cloud</p>
  12537. </td>
  12538. </tr>
  12539. <tr>
  12540. <td>
  12541. <code>caProvider</code></br>
  12542. <em>
  12543. <a href="#external-secrets.io/v1.YandexCAProvider">
  12544. YandexCAProvider
  12545. </a>
  12546. </em>
  12547. </td>
  12548. <td>
  12549. <em>(Optional)</em>
  12550. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  12551. </td>
  12552. </tr>
  12553. <tr>
  12554. <td>
  12555. <code>fetching</code></br>
  12556. <em>
  12557. <a href="#external-secrets.io/v1.FetchingPolicy">
  12558. FetchingPolicy
  12559. </a>
  12560. </em>
  12561. </td>
  12562. <td>
  12563. <em>(Optional)</em>
  12564. <p>FetchingPolicy configures the provider to interpret the <code>data.secretKey.remoteRef.key</code> field in ExternalSecret as secret ID or secret name</p>
  12565. </td>
  12566. </tr>
  12567. </tbody>
  12568. </table>
  12569. <hr/>
  12570. <p><em>
  12571. Generated with <code>gen-crd-api-reference-docs</code>.
  12572. </em></p>
  12573. </article>
  12574. </div>
  12575. <script>var target=document.getElementById(location.hash.slice(1));target&&target.name&&(target.checked=target.name.startsWith("__tabbed_"))</script>
  12576. </div>
  12577. </main>
  12578. <img referrerpolicy="no-referrer-when-downgrade" src="https://static.scarf.sh/a.png?x-pxid=6658a9eb-067d-49f1-94f2-b8b00f21451e" alt=""/>
  12579. <footer class="md-footer">
  12580. <div class="md-footer-meta md-typeset">
  12581. <div class="md-footer-meta__inner md-grid">
  12582. <div class="md-copyright">
  12583. <div class="md-copyright__highlight">
  12584. &copy; 2025 The external-secrets Authors.<br/>
  12585. &copy; 2025 The Linux Foundation. All rights reserved.<br/><br/>
  12586. The Linux Foundation has registered trademarks and uses trademarks.<br/>
  12587. For a list of trademarks of The Linux Foundation, please see our <a href="https://www.linuxfoundation.org/trademark-usage/">Trademark Usage page</a>.
  12588. </div>
  12589. Made with
  12590. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  12591. Material for MkDocs
  12592. </a>
  12593. </div>
  12594. </div>
  12595. </div>
  12596. </footer>
  12597. </div>
  12598. <div class="md-dialog" data-md-component="dialog">
  12599. <div class="md-dialog__inner md-typeset"></div>
  12600. </div>
  12601. <script id="__config" type="application/json">{"base": "../..", "features": ["navigation.tabs", "navigation.indexes", "navigation.expand"], "search": "../../assets/javascripts/workers/search.973d3a69.min.js", "tags": null, "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}, "version": {"provider": "mike"}}</script>
  12602. <script src="../../assets/javascripts/bundle.92b07e13.min.js"></script>
  12603. </body>
  12604. </html>